-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMatch.java
52 lines (39 loc) · 976 Bytes
/
Match.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package com.example.padel;
public class Match {
public String player1;
public String player2;
public String player3;
public String player4;
public Match(){
}
public Match(String player1,String player2, String player3, String player4){
player1 = player1;
player2 = player2;
player3 = player3;
player4 = player4;
}
public String getPlayer1() {
return player1;
}
public void setPlayer1(String player1) {
this.player1 = player1;
}
public String getPlayer2() {
return player2;
}
public void setPlayer2(String player2) {
this.player2 = player2;
}
public String getPlayer3() {
return player3;
}
public void setPlayer3(String player3) {
this.player3 = player3;
}
public String getPlayer4() {
return player4;
}
public void setPlayer4(String player4) {
this.player4 = player4;
}
}