Uses of Class
model.Student

Packages that use Student
model   
 

Uses of Student in model
 

Methods in model that return Student
 Student EnrolledIn.getStudent()
          Accessor for student
 Student RegistrationModel.getStudent(java.lang.String name)
          Lookup a student by name
 Student Course.removeFirstWaiting()
          Remove the first student from the waiting list when a slot opens up
 

Methods in model that return types with arguments of type Student
 java.util.Iterator<Student> RegistrationModel.studentIterator()
          Allow access to all students
 

Methods in model with parameters of type Student
 void RegistrationModel.addStudent(Student newStudent)
          Add a student to the collection of students
 void Course.addWaiting(Student student)
          Add a student to the waiting list for a course
 void Course.removeWaiting(Student student)
          Remove a specific student from the waiting list
 

Constructors in model with parameters of type Student
EnrolledIn(Course course, Student student)
          Constructor