-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.java
More file actions
120 lines (93 loc) · 2.76 KB
/
Copy pathApp.java
File metadata and controls
120 lines (93 loc) · 2.76 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
import java.time.LocalDate;
public class App {
// States
private String name;
private String reg;
private String dept;
private String scholar;
private int hostelFee;
private int trans;
private int admFee;
private int semFee;
private int total;
public static LocalDate currentDate;
// Methods
static {
LocalDate date = LocalDate.now();
currentDate = date;
}
public String getName() {
return name;
}
public int getTotal() {
return total;
}
public void setTotal(int total) {
this.total = total;
}
public int getSemFee() {
return semFee;
}
public void setSemFee(int semFee) {
this.semFee = semFee;
}
public int getAdmFee() {
return admFee;
}
public void setAdmFee(int admFee) {
this.admFee = admFee;
}
public void setName(String name) {
this.name = name;
}
public int getHostelFee() {
return hostelFee;
}
public void setHostelFee(int hostelFee) {
this.hostelFee = hostelFee;
}
public String getScholar() {
return scholar;
}
public void setScholar(String scholar) {
this.scholar = scholar;
}
public int getTrans() {
return trans;
}
public void setTrans(int trans) {
this.trans = trans;
}
public String getDept() {
return dept;
}
public void setDept(String dept) {
this.dept = dept;
}
public String getReg() {
return reg;
}
public void setReg(String reg) {
this.reg = reg;
}
public static void getCurrentDate() {
System.out.println("Date : " + currentDate);
}
public void showInfo() {
System.out.print("\n\n----------************----------");
System.out.println("\n FEE CHALLAN");
System.out.println("Univerisity : COMSATS Lahore\n");
System.out.println("Student Name : " + getName());
System.out.println("Registration : " + getReg());
System.out.println("Student Dept : " + getDept());
System.out.print("--------------------------------\n");
System.out.println("Admission Fees : " + getAdmFee());
System.out.println("Semester Fees : " + getSemFee());
System.out.println("Hostel Fees : " + getHostelFee());
System.out.println("Transport Fees : " + getTrans());
System.out.println("Total Fees : " + getTotal());
getCurrentDate();
System.out.print("--------------------------------");
System.out.print("\n----------************----------\n\n\n");
}
}