package myuml; public class Company { /* * (non-javadoc) */ private Location location; /** * Getter of the property location * * @return Returns the location. * */ public Location getLocation() { return location; } /** * Setter of the property location * * @param location The location to set. * */ public void setLocation(Location location ){ this.location = location; } /* * (non-javadoc) */ private String name; /** * Getter of the property name * * @return Returns the name. * */ public String getName() { return name; } /** * Setter of the property name * * @param name The name to set. * */ public void setName(String name ){ this.name = name; } }