-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathAddress.java
More file actions
50 lines (39 loc) · 793 Bytes
/
Address.java
File metadata and controls
50 lines (39 loc) · 793 Bytes
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
49
50
package clojure.java.data.test;
public class Address {
private String line1;
private String city;
private State state;
private String zip;
public Address() {
}
public Address(String line1, String city, State state, String zip) {
this.line1 = line1;
this.city = city;
this.state = state;
this.zip = zip;
}
public String getLine1() {
return line1;
}
public void setLine1(String line1) {
this.line1 = line1;
}
public String getCity() {
return city;
}
public void setCity(String city) {
this.city = city;
}
public State getState() {
return state;
}
public void setState(State state) {
this.state = state;
}
public String getZip() {
return zip;
}
public void setZip(String zip) {
this.zip = zip;
}
}