public abstract class MyCourses
extends java.lang.Object
| Modifier and Type | Field and Description |
|---|---|
(package private) Student |
user
The current student user
|
| Constructor and Description |
|---|
MyCourses() |
| Modifier and Type | Method and Description |
|---|---|
(package private) abstract boolean |
login(java.lang.String username,
java.lang.String password)
Checks username and password to login student
|
(package private) abstract boolean |
viewCourses(Student student)
Displays the list of courses for a student
|
(package private) abstract void |
viewTests(Course course,
Student student)
Displays a list of tests in a course.
|
Student user
abstract boolean login(java.lang.String username,
java.lang.String password)
username - - user's calpoly usernamepassword - - user's passwordabstract boolean viewCourses(Student student)
student - - the student for which the list of courses is to be displayed