Methods Summary |
---|
public java.lang.String | getCity()Gets the city value for this Address.
return city;
|
public Phone[] | getOtherPhones()
return otherPhones;
|
public Phone | getPhoneNumber()Gets the phoneNumber value for this Address.
return phoneNumber;
|
public StateType | getState()Gets the state value for this Address.
return state;
|
public java.lang.String | getStreetName()Gets the streetName value for this Address.
return streetName;
|
public int | getStreetNum()Gets the streetNum value for this Address.
return streetNum;
|
public int | getZip()Gets the zip value for this Address.
return zip;
|
public void | setCity(java.lang.String city)Sets the city value for this Address.
this.city = city;
|
public void | setOtherPhones(Phone[] phones)
otherPhones = phones;
|
public void | setPhoneNumber(Phone phoneNumber)Sets the phoneNumber value for this Address.
this.phoneNumber = phoneNumber;
|
public void | setState(StateType state)Sets the state value for this Address.
this.state = state;
|
public void | setStreetName(java.lang.String streetName)Sets the streetName value for this Address.
this.streetName = streetName;
|
public void | setStreetNum(int streetNum)Sets the streetNum value for this Address.
this.streetNum = streetNum;
|
public void | setZip(int zip)Sets the zip value for this Address.
this.zip = zip;
|