package myumltutorial;
public class LocationPerson extends myumltutorial.Location {
/*
* (non-javadoc)
*/
private EmployeeSalary employeesalary;
/**
* Getter of the property employeesalary
*
* @return Returns the employeesalary.
*
*/
public EmployeeSalary getEmployeesalary()
{
return employeesalary;
}
/**
* Setter of the property employeesalary
*
* @param employeesalary The employeesalary to set.
*
*/
public void setEmployeesalary(EmployeeSalary employeesalary ){
this.employeesalary = employeesalary;
}
/*
* (non-javadoc)
*/
private ContractorHourly contractorHourly;
/**
* Getter of the property contractorHourly
*
* @return Returns the contractorHourly.
*
*/
public ContractorHourly getContractorHourly()
{
return contractorHourly;
}
/**
* Setter of the property contractorHourly
*
* @param contractorHourly The contractorHourly to set.
*
*/
public void setContractorHourly(ContractorHourly contractorHourly ){
this.contractorHourly = contractorHourly;
}
}
///**
// * Setter of the property employeeSalary
// *
// * @param employeeSalary The employeeSalary to set.
// *
// */
//public void setEmployeeSalary(EmployeeSalary employeeSalary ){
// this.employeeSalary = employeeSalary;
//}
///**
// * Getter of the property employeeSalary
// *
// * @return Returns the employeeSalary.
// *
// */
//public EmployeeSalary getEmployeeSalary()
//{
// return employeeSalary;
//}