|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Object | +--Course
Holds data obtained from Banner about a particular course a student has taken. When initially returned from the transcript parser, the courseId will hold the typical Dowling course format (for example, "CSC175"). This must subsequently be translated before it is passed into the processor system.
| Constructor Summary | |
Course()
Constructs a Course object. |
|
| Method Summary | |
java.lang.String |
getCourseId()
Retrieves the associated course id as stored in the local database. |
char |
getCourseLetter()
Retrieves the associated course letter. |
java.lang.String |
getCourseNumber()
Retrieves the associated course number. |
int |
getCreditHours()
Retrieves the associated credits hours earned. |
java.lang.String |
getDiscipline()
Retrieves the associated discipline. |
java.lang.String |
getDowlingCourseCode()
Retrieves the associated dowling course code. |
java.lang.String |
getGrade()
Retrieves the associated grade. |
void |
setCourseId(java.lang.String courseId)
Sets the courseId for this course. |
void |
setCourseNumber(java.lang.String cn)
Sets the course number porition of the courseId and splits off the course letter. |
void |
setCreditHours(java.lang.String creditHours)
Sets the credit hours (credits) obtained in taking the course. |
void |
setDiscipline(java.lang.String subject)
Sets the discipline portion of the courseId. |
void |
setGrade(java.lang.String grd)
Sets the grade obtained in taking the course. |
java.lang.String |
toString()
Prints out a string representation of the class fields. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
public Course()
| Method Detail |
public java.lang.String getCourseId()
public java.lang.String getDiscipline()
public java.lang.String getCourseNumber()
public java.lang.String getDowlingCourseCode()
public int getCreditHours()
public char getCourseLetter()
public java.lang.String getGrade()
public void setCourseId(java.lang.String courseId)
courseId - The string to store as the courseId.public void setDiscipline(java.lang.String subject)
subject - The subject of the course.public void setCourseNumber(java.lang.String cn)
cn - The course code of the course.public void setCreditHours(java.lang.String creditHours)
creditHours - Number of credit hours for this course.public void setGrade(java.lang.String grd)
grd - The letter grade earned in the particular course.public java.lang.String toString()
toString in class java.lang.Object
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||