Methods Summary |
---|
public Course | getCourse()
return course;
|
public java.util.List | getExams()
return exams;
|
public int | getSection()
return section;
|
public Student | getStudent()
return student;
|
public void | setCourse(Course pCourse)
this.course = pCourse;
|
public void | setExams(java.util.List pList)
exams = pList;
|
public void | setSection(int pSection)
section = pSection;
|
public void | setStudent(Student pStudent)
this.student = pStudent;
|