-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstudent.java
83 lines (68 loc) · 1.6 KB
/
student.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
package school_management;
/**
* This class keeps the track of student
*/
public class student {
private int id;
private String name;
private int grade;
private int feesPaid;
private int feesTotal;
/**
* fees for every student is same
* student constructor
* @param id
* @param name
* @param grade
*/
public student(int id, String name, int grade){
this.feesPaid = 0;
this.feesTotal= 3000;
this.id = id;
this.name = name;
this.grade= grade;
}
/**
* paying fees to school
* @param fees
*/
/**
* updating the student grade where student will be promoted
* to the next grade so setting the grade and returning
* nothing
* @param grade
*/
public void setGrade(int grade){
this.grade = grade;
}
/**
* Changing the fees paid, it will keep adding
* fees to feespaid
*/
public void payfees(int fees){
feesPaid += fees;
mangementSystem.updateTotalMoneyearned(feesPaid);
}
public int remainingfees(){
return feesTotal-= feesPaid;
}
/**
* returning every detail of student
* @return id, name , grade feespaid
*/
public int getId() {
return id;
}
public String getName() {
return name;
}
public int getGrade() {
return grade;
}
public int getFeesPaid() {
return feesPaid;
}
public int getFeesTotal() {
return feesTotal;
}
}