Addresspublic class Address extends Object implements Serializable
Fields Summary |
---|
private String | street | private String | city | private String | state | private String | zip |
Constructors Summary |
---|
public Address(String street, String city, String state, String zip)Construct a new dependent object instance.
this.street = street;
this.city = city;
this.state = state;
this.zip = zip;
|
|