1 | public class Document extends Item {↵ | | 1 | public class Continent {↵
|
|
2 | private Blob content;↵ | | 2 | private Integer id;↵
|
|
3 | private Calendar modified;↵ | | 3 | private ↵
|
|
4 | private Calendar created;↵ | | |
|
|
5 | /**↵ | | |
|
6 | * @return Returns the created.↵ | | |
|
7 | */↵ | | |
|
|
8 | public Calendar getCreate↵ | | 4 | String name;↵
|
| | | 5 | private Set countries;↵
|
|
9 | d() {↵ | | 6 | public Integer getId() {↵
|
|
10 | return created;↵ | | 7 | return id;↵
|
|
11 | }↵ | | 8 | }↵
|
|
12 | /**↵ | | 9 | ↵
|
13 | * @param created The created to set.↵ | | |
|
14 | */↵ | | |
|
|
15 | public void setCreated(Calendar created) {↵ | | 10 | public void setId(Integer id) {↵
|
|
16 | this.created = created;↵ | | 11 | this.id = id;↵
|
|
17 | }↵ | | 12 | }↵
|
|
18 | /**↵ | | 13 | ↵
|
19 | * @return Returns the modified.↵ | | |
|
20 | */↵ | | |
|
|
21 | public Calendar getModified() {↵ | | 14 | public String getName() {↵
|
|
22 | return modified;↵ | | 15 | return ↵
|
|
23 | }↵ | | |
|
|
24 | /**↵ | | |
|
25 | * @param modified The modified to set.↵ | | |
|
26 | */↵ | | |
|
|
27 | public void setModified(Calendar modified↵ | | 16 | name;↵
|
| | | 17 | }↵
|
|
28 | ) {↵ | | 18 | public void setName(String name) {↵
|
|
29 | this.modified = modified;↵ | | 19 | this.↵
|
|
30 | }↵ | | |
|
|
31 | /**↵ | | |
|
32 | * @return Returns the content.↵ | | |
|
33 | */↵ | | 20 | name = name;↵
|
| | | 21 | }↵
|
|
34 | public Blob getContent() {↵ | | 22 | public Set getCountries() {↵
|
|
35 | return content;↵ | | 23 | return count↵
|
| | | 24 | ries;↵
|
36 | }↵ | | 25 | }↵
|
|
37 | /**↵ | | |
|
38 | * @param content The content to set.↵ | | |
|
39 | */↵ | | |
|
|
40 | public void setContent(Blob content) {↵ | | 26 | public void setCountries(Set countries) {↵
|
|
41 | this.content = content; | | 27 | this.countries = countries;↵
|
| | | 28 |
|