-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAddress.java
48 lines (45 loc) · 887 Bytes
/
Address.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
public class Address {
private String street;
private String no;
private String town;
private String city;
private String country;
public Address(String street, String no, String town, String city, String country) {
super();
this.street = street;
this.no = no;
this.town = town;
this.city = city;
this.country = country;
}
public String getStreet() {
return street;
}
public void setStreet(String street) {
this.street = street;
}
public String getNo() {
return no;
}
public void setNo(String no) {
this.no = no;
}
public String getTown() {
return town;
}
public void setTown(String town) {
this.town = town;
}
public String getCity() {
return city;
}
public void setCity(String city) {
this.city = city;
}
public String getCountry() {
return country;
}
public void setCountry(String country) {
this.country = country;
}
}