-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEspAssignmentCategory.java
67 lines (53 loc) · 1.65 KB
/
EspAssignmentCategory.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import java.io.Serializable;
public class EspAssignmentCategory implements Serializable {
private String category;
private Float points;
private Float maximumPoints;
private Float percent;
private Float categoryWeight;
private Float categoryPoints;
public EspAssignmentCategory(String category, Float points, Float maximumPoints, Float percent, Float categoryWeight, Float categoryPoints) {
this.category = category;
this.points = points;
this.maximumPoints = maximumPoints;
this.percent = percent;
this.categoryWeight = categoryWeight;
this.categoryPoints = categoryPoints;
}
public String getCategory() {
return this.category;
}
public void setCategory(String category) {
this.category = category;
}
public Float getPoints() {
return this.points;
}
public void setPoints(Float points) {
this.points = points;
}
public Float getMaximumPoints() {
return this.maximumPoints;
}
public void setMaximumPoints(Float maximumPoints) {
this.maximumPoints = maximumPoints;
}
public Float getPercent() {
return this.percent;
}
public void setPercent(Float percent) {
this.percent = percent;
}
public Float getCategoryWeight() {
return this.categoryWeight;
}
public void setCategoryWeight(Float categoryWeight) {
this.categoryWeight = categoryWeight;
}
public Float getCategoryPoints() {
return this.categoryPoints;
}
public void setCategoryPoints(Float categoryPoints) {
this.categoryPoints = categoryPoints;
}
}