1 package generated.model.de.fhdw.partner;
2
3 import de.fhdw.wtf.context.model.AnyType;
4 import de.fhdw.wtf.context.model.Str;
5 import de.fhdw.wtf.persistence.meta.UserObject;
6
7
8
9
10 public class City extends AnyType {
11
12
13
14
15 private Str name;
16
17
18
19
20
21
22
23 public City(final Str name) {
24 this.name = name;
25 }
26
27
28
29
30
31
32
33 public City(final UserObject userObject) {
34 super(userObject);
35 }
36
37
38
39
40
41
42 public Str getName() {
43 return this.name;
44 }
45 }