forked from ghostmkg/programming-language
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFaculty.java
78 lines (61 loc) · 2.02 KB
/
Faculty.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
package CMS;
import java.util.ArrayList;
public class Faculty extends Person
{
private String employeeID;
private long salary;
private Date dateOfBirth;
private Date hiringDate;
private ArrayList<Course> ecourses = new ArrayList<>();
public Faculty(String name, String cnic, String contact, String address,String employeeID, long salary, ArrayList<Course> ecourses , Date dateOfBirth, Date hiringDate)
{
super(name, cnic, contact, address);
this.employeeID = employeeID;
this.salary = salary;
this.ecourses = ecourses;
this.dateOfBirth = dateOfBirth;
this.hiringDate = hiringDate;
}
public String getEmployeeID() {
return employeeID;
}
public void setEmployeeID(String employeeID) {
this.employeeID = employeeID;
}
public long getSalary() {
return salary;
}
public void setSalary(long salary) {
this.salary = salary;
}
public ArrayList<Course> getCourses()
{
return ecourses;
}
public void setCourses(ArrayList<Course> ecourses)
{
this.ecourses = ecourses;
}
public Date getDateOfBirth()
{
return dateOfBirth;
}
public void setDateOfBirth(Date dateOfBirth)
{
this.dateOfBirth = dateOfBirth;
}
public Date getHiringDate() {
return hiringDate;
}
public void setHiringDate(Date hiringDate) {
this.hiringDate = hiringDate;
}
public String account()
{
return "Abstract of faculty";
}
public String toString() {
return String.format("Employee ID Salary%n%-30s%-19s%nBitrh Date : %s%nHiring Date : %s%s", employeeID, salary, dateOfBirth, hiringDate,
"\n==============================================================\n Employee's courses\n\nCourse Name Course code Credit hours",getCourses(),account());
}
}