public abstract class User
extends java.lang.Object
Constructor and Description |
---|
User()
Default Constructor
|
Modifier and Type | Method and Description |
---|---|
void |
addCourse()
Adds a course to a user.
|
void |
removeCourse(Course del) |
abstract void |
reviewTest(Test rev) |
abstract void |
takeTest(Test take) |
java.util.ArrayList<Test> |
toTake() |
public java.util.ArrayList<Test> toTake()
public void addCourse()
public void removeCourse(Course del)
del
- - Course to delete from a user's courses.public abstract void takeTest(Test take)
take
- - Test that the user will take.public abstract void reviewTest(Test rev)
rev
- - test that the user will review.