This image shows the two EmployeeModel classes and
their associated methods and datatypes.
The two classes are:
- empbft.component.employee.helper.EmployeeModel
- empbft.component.employee.helper.MutableEmployeeModel
Datatypes under empbft.component.employee.helper.EmployeeModel:
- m_id: integer
- m_benefits: Collection
- m_firstName: String
- m_lastName: String
- m_email: String
- m_phoneNumber: String
- m_hireDate: Date
- m_jobid: String
Methods under empbft.component.employee.helper.EmployeeModel:
- Constructor()
- getId(): int
- getBenefits(): Collection
- getFirstName(): String
- getLastName(): String
- getEmail(): String
- getPhoneNumber(): String
- getHireDate(): Date
- getJobId(): String
- toString(): String
- copy(EmployeeModel other): void
Methods under empbft.component.employee.helper.MutableEmployeeModel:
- Constructor(int id, Collection benefits, ...)
- setBenefits(Collection benefits): void