-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEspTranscript.java
48 lines (38 loc) · 1.04 KB
/
EspTranscript.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
import java.io.Serializable;
import java.util.ArrayList;
public class EspTranscript implements Serializable {
private Float gpa;
private Integer rank;
private Integer rankOutOf;
private ArrayList<EspTranscriptGroup> groups;
public EspTranscript(Float gpa, Integer rnk, Integer roo, ArrayList<EspTranscriptGroup> gps) {
this.gpa = gpa;
rank = rnk;
rankOutOf = roo;
groups = gps;
}
public Float getGpa() {
return this.gpa;
}
public void setGpa(Float gpa) {
this.gpa = gpa;
}
public Integer getRank() {
return this.rank;
}
public void setRank(Integer rank) {
this.rank = rank;
}
public Integer getRankOutOf() {
return this.rankOutOf;
}
public void setRankOutOf(Integer rankOutOf) {
this.rankOutOf = rankOutOf;
}
public ArrayList<EspTranscriptGroup> getGroups() {
return this.groups;
}
public void setGroups(ArrayList<EspTranscriptGroup> groups) {
this.groups = groups;
}
}