1
14
15 package com.liferay.portlet.calendar.model;
16
17
33 public class CalEventWrapper implements CalEvent {
34 public CalEventWrapper(CalEvent calEvent) {
35 _calEvent = calEvent;
36 }
37
38 public long getPrimaryKey() {
39 return _calEvent.getPrimaryKey();
40 }
41
42 public void setPrimaryKey(long pk) {
43 _calEvent.setPrimaryKey(pk);
44 }
45
46 public java.lang.String getUuid() {
47 return _calEvent.getUuid();
48 }
49
50 public void setUuid(java.lang.String uuid) {
51 _calEvent.setUuid(uuid);
52 }
53
54 public long getEventId() {
55 return _calEvent.getEventId();
56 }
57
58 public void setEventId(long eventId) {
59 _calEvent.setEventId(eventId);
60 }
61
62 public long getGroupId() {
63 return _calEvent.getGroupId();
64 }
65
66 public void setGroupId(long groupId) {
67 _calEvent.setGroupId(groupId);
68 }
69
70 public long getCompanyId() {
71 return _calEvent.getCompanyId();
72 }
73
74 public void setCompanyId(long companyId) {
75 _calEvent.setCompanyId(companyId);
76 }
77
78 public long getUserId() {
79 return _calEvent.getUserId();
80 }
81
82 public void setUserId(long userId) {
83 _calEvent.setUserId(userId);
84 }
85
86 public java.lang.String getUserUuid()
87 throws com.liferay.portal.SystemException {
88 return _calEvent.getUserUuid();
89 }
90
91 public void setUserUuid(java.lang.String userUuid) {
92 _calEvent.setUserUuid(userUuid);
93 }
94
95 public java.lang.String getUserName() {
96 return _calEvent.getUserName();
97 }
98
99 public void setUserName(java.lang.String userName) {
100 _calEvent.setUserName(userName);
101 }
102
103 public java.util.Date getCreateDate() {
104 return _calEvent.getCreateDate();
105 }
106
107 public void setCreateDate(java.util.Date createDate) {
108 _calEvent.setCreateDate(createDate);
109 }
110
111 public java.util.Date getModifiedDate() {
112 return _calEvent.getModifiedDate();
113 }
114
115 public void setModifiedDate(java.util.Date modifiedDate) {
116 _calEvent.setModifiedDate(modifiedDate);
117 }
118
119 public java.lang.String getTitle() {
120 return _calEvent.getTitle();
121 }
122
123 public void setTitle(java.lang.String title) {
124 _calEvent.setTitle(title);
125 }
126
127 public java.lang.String getDescription() {
128 return _calEvent.getDescription();
129 }
130
131 public void setDescription(java.lang.String description) {
132 _calEvent.setDescription(description);
133 }
134
135 public java.util.Date getStartDate() {
136 return _calEvent.getStartDate();
137 }
138
139 public void setStartDate(java.util.Date startDate) {
140 _calEvent.setStartDate(startDate);
141 }
142
143 public java.util.Date getEndDate() {
144 return _calEvent.getEndDate();
145 }
146
147 public void setEndDate(java.util.Date endDate) {
148 _calEvent.setEndDate(endDate);
149 }
150
151 public int getDurationHour() {
152 return _calEvent.getDurationHour();
153 }
154
155 public void setDurationHour(int durationHour) {
156 _calEvent.setDurationHour(durationHour);
157 }
158
159 public int getDurationMinute() {
160 return _calEvent.getDurationMinute();
161 }
162
163 public void setDurationMinute(int durationMinute) {
164 _calEvent.setDurationMinute(durationMinute);
165 }
166
167 public boolean getAllDay() {
168 return _calEvent.getAllDay();
169 }
170
171 public boolean isAllDay() {
172 return _calEvent.isAllDay();
173 }
174
175 public void setAllDay(boolean allDay) {
176 _calEvent.setAllDay(allDay);
177 }
178
179 public boolean getTimeZoneSensitive() {
180 return _calEvent.getTimeZoneSensitive();
181 }
182
183 public boolean isTimeZoneSensitive() {
184 return _calEvent.isTimeZoneSensitive();
185 }
186
187 public void setTimeZoneSensitive(boolean timeZoneSensitive) {
188 _calEvent.setTimeZoneSensitive(timeZoneSensitive);
189 }
190
191 public java.lang.String getType() {
192 return _calEvent.getType();
193 }
194
195 public void setType(java.lang.String type) {
196 _calEvent.setType(type);
197 }
198
199 public boolean getRepeating() {
200 return _calEvent.getRepeating();
201 }
202
203 public boolean isRepeating() {
204 return _calEvent.isRepeating();
205 }
206
207 public void setRepeating(boolean repeating) {
208 _calEvent.setRepeating(repeating);
209 }
210
211 public java.lang.String getRecurrence() {
212 return _calEvent.getRecurrence();
213 }
214
215 public void setRecurrence(java.lang.String recurrence) {
216 _calEvent.setRecurrence(recurrence);
217 }
218
219 public int getRemindBy() {
220 return _calEvent.getRemindBy();
221 }
222
223 public void setRemindBy(int remindBy) {
224 _calEvent.setRemindBy(remindBy);
225 }
226
227 public int getFirstReminder() {
228 return _calEvent.getFirstReminder();
229 }
230
231 public void setFirstReminder(int firstReminder) {
232 _calEvent.setFirstReminder(firstReminder);
233 }
234
235 public int getSecondReminder() {
236 return _calEvent.getSecondReminder();
237 }
238
239 public void setSecondReminder(int secondReminder) {
240 _calEvent.setSecondReminder(secondReminder);
241 }
242
243 public boolean isNew() {
244 return _calEvent.isNew();
245 }
246
247 public boolean setNew(boolean n) {
248 return _calEvent.setNew(n);
249 }
250
251 public boolean isCachedModel() {
252 return _calEvent.isCachedModel();
253 }
254
255 public void setCachedModel(boolean cachedModel) {
256 _calEvent.setCachedModel(cachedModel);
257 }
258
259 public boolean isEscapedModel() {
260 return _calEvent.isEscapedModel();
261 }
262
263 public void setEscapedModel(boolean escapedModel) {
264 _calEvent.setEscapedModel(escapedModel);
265 }
266
267 public java.io.Serializable getPrimaryKeyObj() {
268 return _calEvent.getPrimaryKeyObj();
269 }
270
271 public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
272 return _calEvent.getExpandoBridge();
273 }
274
275 public void setExpandoBridgeAttributes(
276 com.liferay.portal.service.ServiceContext serviceContext) {
277 _calEvent.setExpandoBridgeAttributes(serviceContext);
278 }
279
280 public java.lang.Object clone() {
281 return _calEvent.clone();
282 }
283
284 public int compareTo(com.liferay.portlet.calendar.model.CalEvent calEvent) {
285 return _calEvent.compareTo(calEvent);
286 }
287
288 public int hashCode() {
289 return _calEvent.hashCode();
290 }
291
292 public com.liferay.portlet.calendar.model.CalEvent toEscapedModel() {
293 return _calEvent.toEscapedModel();
294 }
295
296 public java.lang.String toString() {
297 return _calEvent.toString();
298 }
299
300 public java.lang.String toXmlString() {
301 return _calEvent.toXmlString();
302 }
303
304 public com.liferay.portal.kernel.cal.TZSRecurrence getRecurrenceObj() {
305 return _calEvent.getRecurrenceObj();
306 }
307
308 public void setRecurrenceObj(
309 com.liferay.portal.kernel.cal.TZSRecurrence recurrenceObj) {
310 _calEvent.setRecurrenceObj(recurrenceObj);
311 }
312
313 public CalEvent getWrappedCalEvent() {
314 return _calEvent;
315 }
316
317 private CalEvent _calEvent;
318 }