public abstract class StudentDB
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
(package private) java.util.Collection<Student> |
students |
Constructor and Description |
---|
StudentDB() |
Modifier and Type | Method and Description |
---|---|
(package private) abstract void |
addStudent(Student s)
adds a Student to the Collections of Students
|
(package private) abstract void |
modifyStudent(Student s)
edits a Student from the Collections of Students
|
(package private) abstract void |
removeStudent(Student s)
removes a Student from the Collections of Students
|
java.util.Collection<Student> students
abstract void addStudent(Student s)
s
- - the Student to addabstract void removeStudent(Student s)
s
- - the Student to removeabstract void modifyStudent(Student s)
s
- - the Student to modify