-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAthleteInfo.java
More file actions
67 lines (52 loc) · 1.52 KB
/
AthleteInfo.java
File metadata and controls
67 lines (52 loc) · 1.52 KB
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
package costCalculator;
public class AthleteInfo {
//for athlete name
private String name;
// for training plan
private String trainingPlan;
//for current weight
private double currentWeight;
// for competition weight category
private String compWtCat;
//for number of competition entered this month
private int noCompEnt;
//for private hour coaching
private double privateHourCoaching;
//getter setter method
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getTrainingPlan() {
return trainingPlan;
}
public void setTrainingPlan(String trainingPlan) {
this.trainingPlan = trainingPlan;
}
public double getCurrentWeight() {
return currentWeight;
}
public void setCurrentWeight(double currentWeight) {
this.currentWeight = currentWeight;
}
public String getCompWtCat() {
return compWtCat;
}
public void setCompWtCat(String compWtCat) {
this.compWtCat = compWtCat;
}
public int getNoCompEnt() {
return noCompEnt;
}
public void setNoCompEnt(int noCompEnt) {
this.noCompEnt = noCompEnt;
}
public double getPrivateHourCoaching() {
return privateHourCoaching;
}
public void setPrivateHourCoaching(double privateHourCoaching) {
this.privateHourCoaching = privateHourCoaching;
}
}