001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portlet.calendar.model;
016    
017    /**
018     * <p>
019     * This class is a wrapper for {@link CalEvent}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       CalEvent
024     * @generated
025     */
026    public class CalEventWrapper implements CalEvent {
027            public CalEventWrapper(CalEvent calEvent) {
028                    _calEvent = calEvent;
029            }
030    
031            public long getPrimaryKey() {
032                    return _calEvent.getPrimaryKey();
033            }
034    
035            public void setPrimaryKey(long pk) {
036                    _calEvent.setPrimaryKey(pk);
037            }
038    
039            public java.lang.String getUuid() {
040                    return _calEvent.getUuid();
041            }
042    
043            public void setUuid(java.lang.String uuid) {
044                    _calEvent.setUuid(uuid);
045            }
046    
047            public long getEventId() {
048                    return _calEvent.getEventId();
049            }
050    
051            public void setEventId(long eventId) {
052                    _calEvent.setEventId(eventId);
053            }
054    
055            public long getGroupId() {
056                    return _calEvent.getGroupId();
057            }
058    
059            public void setGroupId(long groupId) {
060                    _calEvent.setGroupId(groupId);
061            }
062    
063            public long getCompanyId() {
064                    return _calEvent.getCompanyId();
065            }
066    
067            public void setCompanyId(long companyId) {
068                    _calEvent.setCompanyId(companyId);
069            }
070    
071            public long getUserId() {
072                    return _calEvent.getUserId();
073            }
074    
075            public void setUserId(long userId) {
076                    _calEvent.setUserId(userId);
077            }
078    
079            public java.lang.String getUserUuid()
080                    throws com.liferay.portal.kernel.exception.SystemException {
081                    return _calEvent.getUserUuid();
082            }
083    
084            public void setUserUuid(java.lang.String userUuid) {
085                    _calEvent.setUserUuid(userUuid);
086            }
087    
088            public java.lang.String getUserName() {
089                    return _calEvent.getUserName();
090            }
091    
092            public void setUserName(java.lang.String userName) {
093                    _calEvent.setUserName(userName);
094            }
095    
096            public java.util.Date getCreateDate() {
097                    return _calEvent.getCreateDate();
098            }
099    
100            public void setCreateDate(java.util.Date createDate) {
101                    _calEvent.setCreateDate(createDate);
102            }
103    
104            public java.util.Date getModifiedDate() {
105                    return _calEvent.getModifiedDate();
106            }
107    
108            public void setModifiedDate(java.util.Date modifiedDate) {
109                    _calEvent.setModifiedDate(modifiedDate);
110            }
111    
112            public java.lang.String getTitle() {
113                    return _calEvent.getTitle();
114            }
115    
116            public void setTitle(java.lang.String title) {
117                    _calEvent.setTitle(title);
118            }
119    
120            public java.lang.String getDescription() {
121                    return _calEvent.getDescription();
122            }
123    
124            public void setDescription(java.lang.String description) {
125                    _calEvent.setDescription(description);
126            }
127    
128            public java.util.Date getStartDate() {
129                    return _calEvent.getStartDate();
130            }
131    
132            public void setStartDate(java.util.Date startDate) {
133                    _calEvent.setStartDate(startDate);
134            }
135    
136            public java.util.Date getEndDate() {
137                    return _calEvent.getEndDate();
138            }
139    
140            public void setEndDate(java.util.Date endDate) {
141                    _calEvent.setEndDate(endDate);
142            }
143    
144            public int getDurationHour() {
145                    return _calEvent.getDurationHour();
146            }
147    
148            public void setDurationHour(int durationHour) {
149                    _calEvent.setDurationHour(durationHour);
150            }
151    
152            public int getDurationMinute() {
153                    return _calEvent.getDurationMinute();
154            }
155    
156            public void setDurationMinute(int durationMinute) {
157                    _calEvent.setDurationMinute(durationMinute);
158            }
159    
160            public boolean getAllDay() {
161                    return _calEvent.getAllDay();
162            }
163    
164            public boolean isAllDay() {
165                    return _calEvent.isAllDay();
166            }
167    
168            public void setAllDay(boolean allDay) {
169                    _calEvent.setAllDay(allDay);
170            }
171    
172            public boolean getTimeZoneSensitive() {
173                    return _calEvent.getTimeZoneSensitive();
174            }
175    
176            public boolean isTimeZoneSensitive() {
177                    return _calEvent.isTimeZoneSensitive();
178            }
179    
180            public void setTimeZoneSensitive(boolean timeZoneSensitive) {
181                    _calEvent.setTimeZoneSensitive(timeZoneSensitive);
182            }
183    
184            public java.lang.String getType() {
185                    return _calEvent.getType();
186            }
187    
188            public void setType(java.lang.String type) {
189                    _calEvent.setType(type);
190            }
191    
192            public boolean getRepeating() {
193                    return _calEvent.getRepeating();
194            }
195    
196            public boolean isRepeating() {
197                    return _calEvent.isRepeating();
198            }
199    
200            public void setRepeating(boolean repeating) {
201                    _calEvent.setRepeating(repeating);
202            }
203    
204            public java.lang.String getRecurrence() {
205                    return _calEvent.getRecurrence();
206            }
207    
208            public void setRecurrence(java.lang.String recurrence) {
209                    _calEvent.setRecurrence(recurrence);
210            }
211    
212            public int getRemindBy() {
213                    return _calEvent.getRemindBy();
214            }
215    
216            public void setRemindBy(int remindBy) {
217                    _calEvent.setRemindBy(remindBy);
218            }
219    
220            public int getFirstReminder() {
221                    return _calEvent.getFirstReminder();
222            }
223    
224            public void setFirstReminder(int firstReminder) {
225                    _calEvent.setFirstReminder(firstReminder);
226            }
227    
228            public int getSecondReminder() {
229                    return _calEvent.getSecondReminder();
230            }
231    
232            public void setSecondReminder(int secondReminder) {
233                    _calEvent.setSecondReminder(secondReminder);
234            }
235    
236            public com.liferay.portlet.calendar.model.CalEvent toEscapedModel() {
237                    return _calEvent.toEscapedModel();
238            }
239    
240            public boolean isNew() {
241                    return _calEvent.isNew();
242            }
243    
244            public void setNew(boolean n) {
245                    _calEvent.setNew(n);
246            }
247    
248            public boolean isCachedModel() {
249                    return _calEvent.isCachedModel();
250            }
251    
252            public void setCachedModel(boolean cachedModel) {
253                    _calEvent.setCachedModel(cachedModel);
254            }
255    
256            public boolean isEscapedModel() {
257                    return _calEvent.isEscapedModel();
258            }
259    
260            public void setEscapedModel(boolean escapedModel) {
261                    _calEvent.setEscapedModel(escapedModel);
262            }
263    
264            public java.io.Serializable getPrimaryKeyObj() {
265                    return _calEvent.getPrimaryKeyObj();
266            }
267    
268            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
269                    return _calEvent.getExpandoBridge();
270            }
271    
272            public void setExpandoBridgeAttributes(
273                    com.liferay.portal.service.ServiceContext serviceContext) {
274                    _calEvent.setExpandoBridgeAttributes(serviceContext);
275            }
276    
277            public java.lang.Object clone() {
278                    return _calEvent.clone();
279            }
280    
281            public int compareTo(com.liferay.portlet.calendar.model.CalEvent calEvent) {
282                    return _calEvent.compareTo(calEvent);
283            }
284    
285            public int hashCode() {
286                    return _calEvent.hashCode();
287            }
288    
289            public java.lang.String toString() {
290                    return _calEvent.toString();
291            }
292    
293            public java.lang.String toXmlString() {
294                    return _calEvent.toXmlString();
295            }
296    
297            public com.liferay.portal.kernel.cal.TZSRecurrence getRecurrenceObj() {
298                    return _calEvent.getRecurrenceObj();
299            }
300    
301            public void setRecurrenceObj(
302                    com.liferay.portal.kernel.cal.TZSRecurrence recurrenceObj) {
303                    _calEvent.setRecurrenceObj(recurrenceObj);
304            }
305    
306            public CalEvent getWrappedCalEvent() {
307                    return _calEvent;
308            }
309    
310            private CalEvent _calEvent;
311    }