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