- NonResident - Class in studenttuition
-
The NonResident class definition which manages student tuition, county and
state fields.
- NonResident() - Constructor for class studenttuition.NonResident
-
Constructor sets default values for student first name, last name, grade,
credits, county and state fields.
- NonResident(String, String, String, int, String) - Constructor for class studenttuition.NonResident
-
The constructor sets initial values for the student tuition and county
fields, and instantiates object from class State to store the state.
- NYStateResident - Class in studenttuition
-
The NYStateResident class definition which manages student tuition field.
- NYStateResident() - Constructor for class studenttuition.NYStateResident
-
Constructor sets default values for student first name, last name, grade,
credits and county residence fields.
- NYStateResident(String, String, String, int, String) - Constructor for class studenttuition.NYStateResident
-
Explicit call to superclass Student constructor sets initial values for
the student first name, last name, grade and credits, and then
sets the county residence field.