public class Student extends User
Constructor and Description |
---|
Student()
Default Constructor
|
Modifier and Type | Method and Description |
---|---|
void |
addCourse()
Adds a course to a user.
|
void |
removeCourse(Course del) |
void |
reviewTest(Test rev) |
void |
takeTest(Test take) |
public void addCourse()
User
public void removeCourse(Course del)
removeCourse
in class User
del
- - Course to delete from a user's courses.public void takeTest(Test take)
public void reviewTest(Test rev)
reviewTest
in class User
rev
- - test that the user will review.