package myumltutorial; public class Location { /* * (non-javadoc) */ private String zip; /** * Getter of the property zip * * @return Returns the zip. * */ public String getZip() { return zip; } /** * Setter of the property zip * * @param zip The zip to set. * */ public void setZip(String zip ){ this.zip = zip; } /* * (non-javadoc) */ private String state; /** * Getter of the property state * * @return Returns the state. * */ public String getState() { return state; } /** * Setter of the property state * * @param state The state to set. * */ public void setState(String state ){ this.state = state; } /* * (non-javadoc) */ private String city; /** * Getter of the property city * * @return Returns the city. * */ public String getCity() { return city; } /** * Setter of the property city * * @param city The city to set. * */ public void setCity(String city ){ this.city = city; } /* * (non-javadoc) */ private String address2; /** * Getter of the property address2 * * @return Returns the address2. * */ public String getAddress2() { return address2; } /** * Setter of the property address2 * * @param address2 The address2 to set. * */ public void setAddress2(String address2 ){ this.address2 = address2; } /* * (non-javadoc) */ private String address1; /** * Getter of the property address1 * * @return Returns the address1. * */ public String getAddress1() { return address1; } /** * Setter of the property address1 * * @param address1 The address1 to set. * */ public void setAddress1(String address1 ){ this.address1 = address1; } /* * (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; } }