1 package junitx.ddtunit.resources;
2
3 public class FLY_Address {
4 private String address;
5 private String country;
6 private String province;
7
8 public FLY_Address() {
9
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 }