01: package com.acme.contacts;
02:
03: public class Address {
04: private String country;
05: private String city;
06: private int zip;
07: private String type;
08:
09: public String getType() {
10: return type;
11: }
12:
13: public void setType(String type) {
14: this .type = type;
15: }
16:
17: public String getCountry() {
18: return country;
19: }
20:
21: public void setCountry(String country) {
22: this .country = country;
23: }
24:
25: public String getCity() {
26: return city;
27: }
28:
29: public void setCity(String city) {
30: this .city = city;
31: }
32:
33: public int getZip() {
34: return zip;
35: }
36:
37: public void setZip(int zip) {
38: this .zip = zip;
39: }
40:
41: public String toString() {
42: return " - " + country + "/" + city + "(" + zip + ")";
43: }
44:
45: }
|