-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStudentManager.java
More file actions
81 lines (67 loc) · 2.08 KB
/
Copy pathStudentManager.java
File metadata and controls
81 lines (67 loc) · 2.08 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
public class StudentManager
{
public void joinCourse(Student student)
{
System.out.println("\n" + student.getUserType() + " " + student.getFirstName() + " " + student.getLastName()
+ " joined to " + student.getCourse() + ".");
}
public void leaveCourse(Student student)
{
System.out.println("\n" + student.getUserType() + " " + student.getFirstName() + " " + student.getLastName()
+ " left from the " + student.getCourse() + ".");
}
public void attendCourse(Student student)
{
System.out.println("\n" + student.getUserType() + " " + student.getFirstName() + " " + student.getLastName()
+ " is completed today's attendance of " + student.getCourse() + ".");
}
public void sendHomework(Student student)
{
System.out.println("\n" + student.getCourse() + ": " + student.getFirstName() + " " + student.getLastName()
+ " sent a homework.");
}
public void getAll(Student[] students)
{
for (Student student : students)
{
System.out.println("\nStudent ID: " + student.getId() + "\nFirst & Last Name: " +
student.getFirstName() + " " + student.getLastName() + "\nCourse: " + student.getCourse());
}
}
public void add(Student student)
{
System.out.println("\n" + student.getFirstName() + " " + student.getLastName() +
" is added to system as " + student.getUserType() + ".");
}
public void update(Student student)
{
System.out.println("\n" + student.getUserType() + " " + student.getFirstName() + " " + student.getLastName() +
" is successfully updated.");
}
public void remove(Student student)
{
System.out.println("\n" + student.getUserType() + " " + student.getFirstName() + " " + student.getLastName() +
" is removed from system.");
}
public void addMultiple(Student[] students)
{
for (Student student : students)
{
add(student);
}
}
public void updateMultiple(Student[] students)
{
for (Student student : students)
{
update(student);
}
}
public void removeMultiple(Student[] students)
{
for (Student student : students)
{
remove(student);
}
}
}