comparison gwt-client/src/main/java/org/dive4elements/river/client/shared/model/ContactInformation.java @ 5838:5aa05a7a34b7

Rename modules to more fitting names.
author Sascha L. Teichmann <teichmann@intevation.de>
date Thu, 25 Apr 2013 15:23:37 +0200
parents flys-client/src/main/java/org/dive4elements/river/client/shared/model/ContactInformation.java@821a02bbfb4e
children 172338b1407f
comparison
equal deleted inserted replaced
5837:d9901a08d0a6 5838:5aa05a7a34b7
1 package org.dive4elements.river.client.shared.model;
2
3 import java.io.Serializable;
4
5
6 public class ContactInformation implements Serializable {
7
8 protected String person;
9 protected String organization;
10 protected String address;
11 protected String city;
12 protected String postcode;
13 protected String phone;
14 protected String email;
15
16
17 public ContactInformation() {
18 }
19
20
21 public void setPerson(String person) {
22 this.person = person;
23 }
24
25
26 public String getPerson() {
27 return person;
28 }
29
30
31 public void setOrganization(String organization) {
32 this.organization = organization;
33 }
34
35
36 public String getOrganization() {
37 return organization;
38 }
39
40
41 public void setAddress(String address) {
42 this.address = address;
43 }
44
45
46 public String getAddress() {
47 return address;
48 }
49
50
51 public void setCity(String city) {
52 this.city = city;
53 }
54
55
56 public String getCity() {
57 return city;
58 }
59
60
61 public void setPostcode(String postcode) {
62 this.postcode = postcode;
63 }
64
65
66 public String getPostcode() {
67 return postcode;
68 }
69
70
71 public void setPhone(String phone) {
72 this.phone = phone;
73 }
74
75
76 public String getPhone() {
77 return phone;
78 }
79
80
81 public void setEmail(String email) {
82 this.email = email;
83 }
84
85
86 public String getEmail() {
87 return email;
88 }
89 }
90 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org