1 | public Calendar getDtStart() {↵ | | 1 | public Calendar getDtStart() {↵
|
2 | return dtStart;↵ | | 2 | return dtStart;↵
|
3 | }↵ | | 3 | }↵
|
|
4 | public String getPriority() {↵ | | 4 | public String getPriority() {↵
|
5 | return priority;↵ | | 5 | return priority;↵
|
6 | }↵ | | 6 | }↵
|
|
7 | public String getSummary() {↵ | | 7 | public String getSummary() {↵
|
8 | return summary;↵ | | 8 | return summary;↵
|
9 | }↵ | | 9 | }↵
|
|
10 | public String getDescription() {↵ | | 10 | public String getDescription() {↵
|
11 | return description;↵ | | 11 | return description;↵
|
12 | }↵ | | 12 | }↵
|
|
13 | public URL getUrl() {↵ | | 13 | public URL getUrl() {↵
|
14 | return url;↵ | | 14 | return url;↵
|
15 | }↵ | | 15 | }↵
|
|
16 | public String getEventClass() {↵ | | 16 | public String getEventClass() {↵
|
17 | return eventClass;↵ | | 17 | return eventClass;↵
|
18 | }↵ | | 18 | }↵
|
|
19 | public void addCategory(String category) {↵ | | 19 | public void addCategory(String category) {↵
|
20 | categoryList.addCategory(category);↵ | | 20 | categoryList.addCategory(category);↵
|
21 | }↵ | | 21 | }↵
|
|
22 | public void removeCategory(String category) {↵ | | 22 | public void removeCategory(String category) {↵
|
23 | categoryList.removeCategory(category);↵ | | 23 | categoryList.removeCategory(category);↵
|
24 | }↵ | | 24 | }↵
|
|
25 | public Iterator<String> getCategoryIterator() {↵ | | 25 | public Iterator<String> getCategoryIterator() {↵
|
26 | return categoryList.getCategoryIterator();↵ | | 26 | return categoryList.getCategoryIterator();↵
|
27 | }↵ | | 27 | }↵
|
|
28 | public String getCategories() {↵ | | 28 | public String getCategories() {↵
|
29 | return categoryList.getCategories();↵ | | 29 | return categoryList.getCategories();↵
|
30 | }↵ | | 30 | }↵
|
|
31 | public void setCategories(String categories) {↵ | | 31 | public void setCategories(String categories) {↵
|
32 | categoryList.setCategories(categories) | | 32 | categoryList.setCategories(categories)
|