package myumltutorial;
public class LocationCompany extends myumltutorial.Location {
/*
* (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;
}
/**
* Setter of the property company
*
* @param company The company to set.
*
*/
}