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.announcements.model;
016    
017    
018    /**
019     * <p>
020     * This class is a wrapper for {@link AnnouncementsEntry}.
021     * </p>
022     *
023     * @author    Brian Wing Shun Chan
024     * @see       AnnouncementsEntry
025     * @generated
026     */
027    public class AnnouncementsEntryWrapper implements AnnouncementsEntry {
028            public AnnouncementsEntryWrapper(AnnouncementsEntry announcementsEntry) {
029                    _announcementsEntry = announcementsEntry;
030            }
031    
032            public long getPrimaryKey() {
033                    return _announcementsEntry.getPrimaryKey();
034            }
035    
036            public void setPrimaryKey(long pk) {
037                    _announcementsEntry.setPrimaryKey(pk);
038            }
039    
040            public java.lang.String getUuid() {
041                    return _announcementsEntry.getUuid();
042            }
043    
044            public void setUuid(java.lang.String uuid) {
045                    _announcementsEntry.setUuid(uuid);
046            }
047    
048            public long getEntryId() {
049                    return _announcementsEntry.getEntryId();
050            }
051    
052            public void setEntryId(long entryId) {
053                    _announcementsEntry.setEntryId(entryId);
054            }
055    
056            public long getCompanyId() {
057                    return _announcementsEntry.getCompanyId();
058            }
059    
060            public void setCompanyId(long companyId) {
061                    _announcementsEntry.setCompanyId(companyId);
062            }
063    
064            public long getUserId() {
065                    return _announcementsEntry.getUserId();
066            }
067    
068            public void setUserId(long userId) {
069                    _announcementsEntry.setUserId(userId);
070            }
071    
072            public java.lang.String getUserUuid()
073                    throws com.liferay.portal.kernel.exception.SystemException {
074                    return _announcementsEntry.getUserUuid();
075            }
076    
077            public void setUserUuid(java.lang.String userUuid) {
078                    _announcementsEntry.setUserUuid(userUuid);
079            }
080    
081            public java.lang.String getUserName() {
082                    return _announcementsEntry.getUserName();
083            }
084    
085            public void setUserName(java.lang.String userName) {
086                    _announcementsEntry.setUserName(userName);
087            }
088    
089            public java.util.Date getCreateDate() {
090                    return _announcementsEntry.getCreateDate();
091            }
092    
093            public void setCreateDate(java.util.Date createDate) {
094                    _announcementsEntry.setCreateDate(createDate);
095            }
096    
097            public java.util.Date getModifiedDate() {
098                    return _announcementsEntry.getModifiedDate();
099            }
100    
101            public void setModifiedDate(java.util.Date modifiedDate) {
102                    _announcementsEntry.setModifiedDate(modifiedDate);
103            }
104    
105            public java.lang.String getClassName() {
106                    return _announcementsEntry.getClassName();
107            }
108    
109            public long getClassNameId() {
110                    return _announcementsEntry.getClassNameId();
111            }
112    
113            public void setClassNameId(long classNameId) {
114                    _announcementsEntry.setClassNameId(classNameId);
115            }
116    
117            public long getClassPK() {
118                    return _announcementsEntry.getClassPK();
119            }
120    
121            public void setClassPK(long classPK) {
122                    _announcementsEntry.setClassPK(classPK);
123            }
124    
125            public java.lang.String getTitle() {
126                    return _announcementsEntry.getTitle();
127            }
128    
129            public void setTitle(java.lang.String title) {
130                    _announcementsEntry.setTitle(title);
131            }
132    
133            public java.lang.String getContent() {
134                    return _announcementsEntry.getContent();
135            }
136    
137            public void setContent(java.lang.String content) {
138                    _announcementsEntry.setContent(content);
139            }
140    
141            public java.lang.String getUrl() {
142                    return _announcementsEntry.getUrl();
143            }
144    
145            public void setUrl(java.lang.String url) {
146                    _announcementsEntry.setUrl(url);
147            }
148    
149            public java.lang.String getType() {
150                    return _announcementsEntry.getType();
151            }
152    
153            public void setType(java.lang.String type) {
154                    _announcementsEntry.setType(type);
155            }
156    
157            public java.util.Date getDisplayDate() {
158                    return _announcementsEntry.getDisplayDate();
159            }
160    
161            public void setDisplayDate(java.util.Date displayDate) {
162                    _announcementsEntry.setDisplayDate(displayDate);
163            }
164    
165            public java.util.Date getExpirationDate() {
166                    return _announcementsEntry.getExpirationDate();
167            }
168    
169            public void setExpirationDate(java.util.Date expirationDate) {
170                    _announcementsEntry.setExpirationDate(expirationDate);
171            }
172    
173            public int getPriority() {
174                    return _announcementsEntry.getPriority();
175            }
176    
177            public void setPriority(int priority) {
178                    _announcementsEntry.setPriority(priority);
179            }
180    
181            public boolean getAlert() {
182                    return _announcementsEntry.getAlert();
183            }
184    
185            public boolean isAlert() {
186                    return _announcementsEntry.isAlert();
187            }
188    
189            public void setAlert(boolean alert) {
190                    _announcementsEntry.setAlert(alert);
191            }
192    
193            public com.liferay.portlet.announcements.model.AnnouncementsEntry toEscapedModel() {
194                    return _announcementsEntry.toEscapedModel();
195            }
196    
197            public boolean isNew() {
198                    return _announcementsEntry.isNew();
199            }
200    
201            public void setNew(boolean n) {
202                    _announcementsEntry.setNew(n);
203            }
204    
205            public boolean isCachedModel() {
206                    return _announcementsEntry.isCachedModel();
207            }
208    
209            public void setCachedModel(boolean cachedModel) {
210                    _announcementsEntry.setCachedModel(cachedModel);
211            }
212    
213            public boolean isEscapedModel() {
214                    return _announcementsEntry.isEscapedModel();
215            }
216    
217            public void setEscapedModel(boolean escapedModel) {
218                    _announcementsEntry.setEscapedModel(escapedModel);
219            }
220    
221            public java.io.Serializable getPrimaryKeyObj() {
222                    return _announcementsEntry.getPrimaryKeyObj();
223            }
224    
225            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
226                    return _announcementsEntry.getExpandoBridge();
227            }
228    
229            public void setExpandoBridgeAttributes(
230                    com.liferay.portal.service.ServiceContext serviceContext) {
231                    _announcementsEntry.setExpandoBridgeAttributes(serviceContext);
232            }
233    
234            public java.lang.Object clone() {
235                    return _announcementsEntry.clone();
236            }
237    
238            public int compareTo(
239                    com.liferay.portlet.announcements.model.AnnouncementsEntry announcementsEntry) {
240                    return _announcementsEntry.compareTo(announcementsEntry);
241            }
242    
243            public int hashCode() {
244                    return _announcementsEntry.hashCode();
245            }
246    
247            public java.lang.String toString() {
248                    return _announcementsEntry.toString();
249            }
250    
251            public java.lang.String toXmlString() {
252                    return _announcementsEntry.toXmlString();
253            }
254    
255            public long getGroupId()
256                    throws com.liferay.portal.kernel.exception.PortalException,
257                            com.liferay.portal.kernel.exception.SystemException {
258                    return _announcementsEntry.getGroupId();
259            }
260    
261            public AnnouncementsEntry getWrappedAnnouncementsEntry() {
262                    return _announcementsEntry;
263            }
264    
265            private AnnouncementsEntry _announcementsEntry;
266    }