C E G S T

C

calculateSalary() - Method in class Employee3
Calculates the Employee's salary including time worked beyond 40 hours per week (overtime)

E

Employee3 - class Employee3.
This class represents Employees
Employee3() - Constructor for class Employee3
Employee3 default constructor initializes each instance variable to null (Strings) or 0 (doubles)
Employee3(String, String, double, double) - Constructor for class Employee3
Employee3 constructor

G

getName() - Method in class Employee3
Gets the Employee's full name

S

setHoursWorked() - Method in class Employee3
Interactively assigns the number of hours worked
setName() - Method in class Employee3
Interactively assigns the Employee's first and last names
setPayRate() - Method in class Employee3
Interactively assigns the Employee's rate of pay

T

toString() - Method in class Employee3
A String representation of the Employee's data

C E G S T