-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathBrownCard.java
More file actions
60 lines (46 loc) · 931 Bytes
/
BrownCard.java
File metadata and controls
60 lines (46 loc) · 931 Bytes
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
53
54
55
56
57
58
59
60
public class BrownCard {
private String season;
private String NW;
private String NE;
private String SW;
private String SE;
public BrownCard(String season, String NW, String NE, String SW, String SE) {
super();
this.season = season;
this.NW = NW;
this.NE = NE;
this.SW = SW;
this.SE = SE;
}
public String getseason(){ //Getters
return season;
}
public String getNW(){
return NW;
}
public String getNE(){
return NE;
}
public String getSW(){
return SW;
}
public String getSE(){
return SE;
}
public void setseason(String season){ //Setters
this.season = season;
}
public void setNW(String NW){
this.NW = NW;
}
public void setNE(String NE){
this.NE = NE;
}
public void setSW(String SW){
this.SW = SW;
}
public void setSE(String SE){
this.SE = SE;
}
//accessor, muttors...
}