public class Grader extends User
| Constructor and Description |
|---|
Grader()
Default Constructor
|
| Modifier and Type | Method and Description |
|---|---|
void |
addCourse()
Adds a course to a user.
|
void |
gradeTest(Test grade) |
void |
removeCourse(Course del) |
void |
reviewTest(Test rev) |
void |
takeTest(Test take) |
void |
viewStats(Course view) |
void |
viewTestStats(Test view) |
public void addCourse()
Userpublic void removeCourse(Course del)
removeCourse in class Userdel - - Course to delete from a user's courses.public void takeTest(Test take)
public void reviewTest(Test rev)
reviewTest in class Userrev - - test that the user will review.public void viewStats(Course view)
view - - Course that you are inspecting the statistics for.public void viewTestStats(Test view)
view - - Test that you are inspecting the statistics for.public void gradeTest(Test grade)
grade - - Test to grade.