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