A C D E F G H I L M P R S T V

E

Employee - Class in librarytest
Employee – inherits from class Person and has an EmployeeID - Identification number (a value between 1 and 999), a Type of employee (enum salary/hourly/contract), a Pay rate (monthly salary or hourly rate), an Area of specialization (use enum), a flag of Currently working? (Clocked in) (boolean), and the Hours worked in current month (double) - allow quarter hours
Employee() - Constructor for class librarytest.Employee
Default constructor
Employee(int, EmployeePayType, double, Specialization, boolean, double, String, String, Address, Gender) - Constructor for class librarytest.Employee
Constructor with all data given
EmployeePayType - Enum in librarytest
Has possible values of HOURLY, SALARY, CONTRACT

A C D E F G H I L M P R S T V