blob: 5ef0669e1bcad8c60bcf61478464b313034a5776 (
plain)
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
package com.vaadin.tests.util;
import java.io.Serializable;
@SuppressWarnings("serial")
public class Address implements Serializable {
private String streetAddress = "";
private Integer postalCode = null;
private String city = "";
public Address() {
}
public Address(String streetAddress, int postalCode, String city) {
setStreetAddress(streetAddress);
setPostalCode(postalCode);
setCity(city);
}
/**
* @return the streetAddress
*/
public String getStreetAddress() {
return streetAddress;
}
/**
* @param streetAddress
* the streetAddress to set
*/
public void setStreetAddress(String streetAddress) {
this.streetAddress = streetAddress;
}
/**
* @return the postalCode
*/
public Integer getPostalCode() {
return postalCode;
}
/**
* @param postalCode
* the postalCode to set
*/
public void setPostalCode(Integer postalCode) {
this.postalCode = postalCode;
}
/**
* @return the city
*/
public String getCity() {
return city;
}
/**
* @param city
* the city to set
*/
public void setCity(String city) {
this.city = city;
}
}
|