Addresspublic class Address extends Object
Fields Summary |
---|
private String | street | private String | city | private String | state | private String | zipcode |
Constructors Summary |
---|
private Address()
| public Address(String street, String city, String state, String zipcode)
this.street = street;
this.city = city;
this.state = state;
this.zipcode = zipcode;
|
|