G M S T V

G

getAverage() - Method in class Student
 
getHighScore() - Method in class Student
 
getName() - Method in class Student
 
getScore(int) - Method in class Student
 

M

MAX_SCORE - Static variable in class Student
The maximum score (100)
MIN_SCORE - Static variable in class Student
The minimum score (0)

S

setName(String) - Method in class Student
Changes the studentŐs name
setScore(int, int) - Method in class Student
 
Student - Class in <Unnamed>
Represents a student with a name and several test scores
Student() - Constructor for class Student
Default: name is "" and each of 3 scores is 0
Student(String) - Constructor for class Student
Name is nm and each of 3 scores is 0
Student(String, int) - Constructor for class Student
Name is nm and each of n scores is 0
Student(String, int[]) - Constructor for class Student
Name is nm and the scores are taken from array t
Student(Student) - Constructor for class Student
Builds a copy of a student

T

toString() - Method in class Student
 

V

validateData() - Method in class Student
 

G M S T V