-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFaculty.java
136 lines (115 loc) · 3.56 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
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
public class Faculty extends Employee implements Comparable<Person> {
private Course[] coursesTaught;
private int numCoursesTaught;
private boolean isTenured;
public Faculty() {
coursesTaught = new Course[100];
numCoursesTaught = 0;
isTenured = false;
}
public Faculty(boolean isTenured) {
coursesTaught = new Course[100];
numCoursesTaught = 0;
this.isTenured = isTenured;
}
public Faculty(String deptName, boolean isTenured) {
super.setDeptName(deptName);
coursesTaught = new Course[100];
numCoursesTaught = 0;
this.isTenured = isTenured;
}
public Faculty(String name, int birthYear, String deptName, boolean isTenured) {
super(name, birthYear, deptName);
coursesTaught = new Course[100];
numCoursesTaught = 0;
this.isTenured = isTenured;
}
public boolean isTenured() {
return isTenured;
}
public int getNumCoursesTaught() {
return numCoursesTaught;
}
public void setIsTenured(boolean isTenured) {
this.isTenured = isTenured;
}
public void addCourseTaught(Course course) {
if (numCoursesTaught < 100) {
coursesTaught[numCoursesTaught] = course;
numCoursesTaught++;
}
}
public void addCoursesTaught(Course[] courses) {
for (Course course : courses) {
addCourseTaught(course);
}
}
public Course getCourseTaught(int index) {
if (index >= 0 && index < numCoursesTaught) {
return coursesTaught[index];
}
return null;
}
public String getCourseTaughtAsString(int index) {
Course course = getCourseTaught(index);
if (course != null) {
return course.getDept() + "-" + course.getNum();
}
return "";
}
public String getAllCoursesTaughtAsString() {
StringBuilder coursesString = new StringBuilder();
for (int i = 0; i < numCoursesTaught; i++) {
coursesString.append(getCourseTaughtAsString(i));
if (i < numCoursesTaught - 1) {
coursesString.append(", ");
}
}
return coursesString.toString();
}
@Override
public boolean equals(Object obj) {
if (!super.equals(obj)) {
return false;
}
if (obj instanceof Faculty) {
Faculty faculty = (Faculty) obj;
return isTenured == faculty.isTenured && numCoursesTaught == faculty.numCoursesTaught
&& Arrays.equals(coursesTaught, faculty.coursesTaught);
}
return false;
}
@Override
public String toString() {
return String.format("%s Faculty: %s | Number of Courses Taught: %d |Courses Taught: %s", super.toString(), isTenured ? "Tenured" : "Not Tenured", numCoursesTaught,
getAllCoursesTaughtAsString());
}
@Override
public int compareTo(Person p) {
if (p instanceof Faculty) {
Faculty otherFaculty = (Faculty) p;
return Integer.compare(this.numCoursesTaught, otherFaculty.numCoursesTaught);
}
return -1;
}
}
public class Course {
private String dept;
private int num;
public Course(String dept, int num) {
this.dept = dept;
this.num = num;
}
public String getDept() {
return dept;
}
public void setDept(String dept) {
this.dept = dept;
}
public int getNum() {
return num;
}
public void setNum(int num) {
this.num = num;
}
}