package myumltutorial; import java.util.Collection; import java.util.Iterator; public class ContractorHourly extends myumltutorial.Person { /* * (non-javadoc) */ private Company company; /** * Getter of the property company * * @return Returns the company. * */ public Company getCompany() { return company; } /** * Setter of the property company * * @param company The company to set. * */ public void setCompany(Company company ){ this.company = company; } /* * (non-javadoc) */ private LocationPerson locationPerson; /** * Getter of the property locationPerson * * @return Returns the locationPerson. * */ public LocationPerson getLocationPerson() { return locationPerson; } /** * Setter of the property locationPerson * * @param locationPerson The locationPerson to set. * */ public void setLocationPerson(LocationPerson locationPerson ){ this.locationPerson = locationPerson; } /* * (non-javadoc) */ private float rateperhour; /** * Getter of the property rateperhour * * @return Returns the rateperhour. * */ public float getRateperhour() { return rateperhour; } /** * Setter of the property rateperhour * * @param rateperhour The rateperhour to set. * */ public void setRateperhour(float rateperhour ){ this.rateperhour = rateperhour; } /** * */ }