G S U

G

getGrade() - Method in class Student
Returns the student's grade.
getLetterGrade() - Method in class GradStudent
Returns the student's letter grade, as follows: 80-100 = A; 70-79 = B; 0-69 = F.
getLetterGrade() - Method in class Student
Calculates the student's letter grade.
getLetterGrade() - Method in class UndergradStudent
Returns the student's letter grade, as follows: 80-100 = A; 70-79 = B; 60-69 = C; 50-59 = D; 0-49 = F.
getName() - Method in class Student
Returns the student's name.
GradStudent - Class in <Unnamed>
 
GradStudent(String, int) - Constructor for class GradStudent
Cretes a student with the given name and numerical grade in percent.
GradStudent() - Constructor for class GradStudent
Creates a student with name "Jane Smith" and grade 100.

S

setGrade(int) - Method in class Student
Sets the student's grade.
Student - Class in <Unnamed>
 
Student(String, int) - Constructor for class Student
Cretes a student with the given name and numerical grade in percent.
Student() - Constructor for class Student
Creates a student with name "Jane Smith" and grade 100.

U

UndergradStudent - Class in <Unnamed>
 
UndergradStudent(String, int) - Constructor for class UndergradStudent
Cretes a student with the given name and numerical grade in percent.
UndergradStudent() - Constructor for class UndergradStudent
Creates a student with name "Jane Smith" and grade 100.

G S U