01: package invoice;
02:
03: /**
04: *
05: */
06: public class Address {
07: private String name = "azerty";
08: private String street;
09: private String zip;
10: private String town;
11: private String country;
12:
13: public Address() {
14: }
15:
16: public Address(String name, String street, String zip, String town,
17: String country) {
18: this .name = name;
19: this .street = street;
20: this .zip = zip;
21: this .town = town;
22: this .country = country;
23: }
24:
25: public String toString() {
26: return "name:" + name + " /street:" + street + " /zip:" + zip
27: + " /town:" + town + " /country:" + country;
28: }
29:
30: public String getName() {
31: return name;
32: }
33:
34: public void setName(String name) {
35: this .name = name;
36: }
37:
38: public String getStreet() {
39: return street;
40: }
41:
42: public void setStreet(String street) {
43: this .street = street;
44: }
45:
46: public String getZip() {
47: return zip;
48: }
49:
50: public void setZip(String zip) {
51: this .zip = zip;
52: }
53:
54: public String getTown() {
55: return town;
56: }
57:
58: public void setTown(String town) {
59: this .town = town;
60: }
61:
62: public String getCountry() {
63: return country;
64: }
65:
66: public void setCountry(String country) {
67: this.country = country;
68: }
69: }
|