01: /**
02: * Copyright (C) 2001-2006 France Telecom R&D
03: */package simpleclass;
04:
05: public class Address {
06: String street;
07: String city;
08: String state;
09: String zip;
10: String deliveryInstructions;
11:
12: public String getCity() {
13: return city;
14: }
15:
16: public void setCity(String city) {
17: this .city = city;
18: }
19:
20: public String getDeliveryInstructions() {
21: return deliveryInstructions;
22: }
23:
24: public void setDeliveryInstructions(String deliveryInstructions) {
25: this .deliveryInstructions = deliveryInstructions;
26: }
27:
28: public String getState() {
29: return state;
30: }
31:
32: public void setState(String state) {
33: this .state = state;
34: }
35:
36: public String getStreet() {
37: return street;
38: }
39:
40: public void setStreet(String street) {
41: this .street = street;
42: }
43:
44: public String getZip() {
45: return zip;
46: }
47:
48: public void setZip(String zip) {
49: this.zip = zip;
50: }
51:
52: }
|