A D F G R S T

A

addSubject(Subject) - Method in class Student
Adds/Enrolls the student to a subject.

D

dropSubject(String) - Method in class Student
Drops/Withdraws the student to a subject.

F

FIRST_PROB - Static variable in class Student
Sets the student in First Probationary Status.

G

getCount() - Static method in class Student
Gets the total number of Student objects created.
getCourse() - Method in class Student
Gets the course that this object is currently enrolled to.
getIdNumber() - Method in class Student
Gets the Student's ID Number.
getMSCA() - Method in class Student
Computes and returns the Student's MSCA.
getProbationStatus() - Method in class Student
Returns the Student's probation status code.
getStat() - Method in class Student
Returns the Student's probation status in words
getSubjects() - Method in class Student
Returns the Hashtable of subjects that the Student has enrolled.
getWPA() - Method in class Student
Computes and returns the Student's WPA.
getYear() - Method in class Student
Returns the Student's year level.

R

REGULAR - Static variable in class Student
Sets the student in Regular Status.

S

SECOND_PROB - Static variable in class Student
Sets the student in Second Probationary Status.
SHIFT - Static variable in class Student
Sets the student to be advice/forced to shift.
Student - class Student.
 
Student() - Constructor for class Student
Creates a student object with no name, a generated ID Number and Regular probationary status.
Student(Person) - Constructor for class Student
Creates a student with full name and a generated ID Number
Student(String, String, String) - Constructor for class Student
Creates a student object with first, last and middle names.
Student(String, String, String, int, String) - Constructor for class Student
Creates a student object with first, last and middle names.
setCourse(String) - Method in class Student
Sets a new course for the Student.
setInitialCount(int) - Static method in class Student
Sets and initial value of how many Students has been previously created.
setNewId(String) - Method in class Student
Sets a new ID Number for the student created.
setProbationStatus(int) - Method in class Student
Sets the student's probationary status code and code equivalent (stat).
setStat(String) - Method in class Student
Sets a user-defined Probationary status without using Status codes.
setYear(int) - Method in class Student
Sets the Student's year level

T

toString() - Method in class Student
Returns Student Informations.

A D F G R S T