01: package junitx.ddtunit.resources;
02:
03: public class FLY_Address {
04: private String address;
05: private String country;
06: private String province;
07:
08: public FLY_Address() {
09: // TODO Auto-generated constructor stub
10: }
11:
12: public String getAddress() {
13: return address;
14: }
15:
16: public void setAddress(String address) {
17: this .address = address;
18: }
19:
20: public String getCountry() {
21: return country;
22: }
23:
24: public void setCountry(String country) {
25: this .country = country;
26: }
27:
28: public String getProvince() {
29: return province;
30: }
31:
32: public void setProvince(String province) {
33: this.province = province;
34: }
35:
36: }
|