public class Instructor extends User
| Constructor and Description |
|---|
Instructor()
Default constructor.
|
| Modifier and Type | Method and Description |
|---|---|
void |
addQuestion(Question add) |
void |
addToCourse(Course edit,
Test add) |
void |
createCourse()
Create a course to add to User's list of courses.
|
void |
createTest()
Create a test and add it to list of tests.
|
void |
createTestBank()
Create a test Bank.
|
void |
editCourse(Course edit) |
void |
editTest(Test edit) |
void |
editTestBank(TestBank edit) |
void |
gradeTest(Test grade) |
void |
removeCourse(Course del) |
void |
removeTest(Test del) |
void |
removeTestBank(TestBank del) |
void |
reviewTest(Test rev) |
void |
takeTest(Test take) |
void |
viewStats(Course view) |
void |
viewTestStats(Test view) |
public void addQuestion(Question add)
add - - question to add to Instructor's list of questions.public void createTest()
public void editTest(Test edit)
edit - - Test to edit.public void removeTest(Test del)
del - - Test to delete from list of tests.public void gradeTest(Test grade)
grade - - Test to grade.public void createTestBank()
public void editTestBank(TestBank edit)
edit - - Test Bank to edit.public void removeTestBank(TestBank del)
del - - Test Bank to delete.public void createCourse()
public void editCourse(Course edit)
edit - - Course to edit.public void addToCourse(Course edit, Test add)
edit - - Course that is being added toadd - - Test that is being added to course.public void removeCourse(Course del)
removeCourse in class Userdel - - Course to delete from a user's courses.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 takeTest(Test take)
public void reviewTest(Test rev)
reviewTest in class Userrev - - test that the user will review.