001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * The contents of this file are subject to the terms of the Liferay Enterprise
005     * Subscription License ("License"). You may not use this file except in
006     * compliance with the License. You can obtain a copy of the License by
007     * contacting Liferay, Inc. See the License for the specific language governing
008     * permissions and limitations under the License, including but not limited to
009     * distribution rights of the Software.
010     *
011     *
012     *
013     */
014    
015    package com.liferay.portlet.tasks.model;
016    
017    /**
018     * <p>
019     * This class is a wrapper for {@link TasksReview}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       TasksReview
024     * @generated
025     */
026    public class TasksReviewWrapper implements TasksReview {
027            public TasksReviewWrapper(TasksReview tasksReview) {
028                    _tasksReview = tasksReview;
029            }
030    
031            /**
032            * Gets the primary key of this tasks review.
033            *
034            * @return the primary key of this tasks review
035            */
036            public long getPrimaryKey() {
037                    return _tasksReview.getPrimaryKey();
038            }
039    
040            /**
041            * Sets the primary key of this tasks review
042            *
043            * @param pk the primary key of this tasks review
044            */
045            public void setPrimaryKey(long pk) {
046                    _tasksReview.setPrimaryKey(pk);
047            }
048    
049            /**
050            * Gets the review id of this tasks review.
051            *
052            * @return the review id of this tasks review
053            */
054            public long getReviewId() {
055                    return _tasksReview.getReviewId();
056            }
057    
058            /**
059            * Sets the review id of this tasks review.
060            *
061            * @param reviewId the review id of this tasks review
062            */
063            public void setReviewId(long reviewId) {
064                    _tasksReview.setReviewId(reviewId);
065            }
066    
067            /**
068            * Gets the group id of this tasks review.
069            *
070            * @return the group id of this tasks review
071            */
072            public long getGroupId() {
073                    return _tasksReview.getGroupId();
074            }
075    
076            /**
077            * Sets the group id of this tasks review.
078            *
079            * @param groupId the group id of this tasks review
080            */
081            public void setGroupId(long groupId) {
082                    _tasksReview.setGroupId(groupId);
083            }
084    
085            /**
086            * Gets the company id of this tasks review.
087            *
088            * @return the company id of this tasks review
089            */
090            public long getCompanyId() {
091                    return _tasksReview.getCompanyId();
092            }
093    
094            /**
095            * Sets the company id of this tasks review.
096            *
097            * @param companyId the company id of this tasks review
098            */
099            public void setCompanyId(long companyId) {
100                    _tasksReview.setCompanyId(companyId);
101            }
102    
103            /**
104            * Gets the user id of this tasks review.
105            *
106            * @return the user id of this tasks review
107            */
108            public long getUserId() {
109                    return _tasksReview.getUserId();
110            }
111    
112            /**
113            * Sets the user id of this tasks review.
114            *
115            * @param userId the user id of this tasks review
116            */
117            public void setUserId(long userId) {
118                    _tasksReview.setUserId(userId);
119            }
120    
121            /**
122            * Gets the user uuid of this tasks review.
123            *
124            * @return the user uuid of this tasks review
125            * @throws SystemException if a system exception occurred
126            */
127            public java.lang.String getUserUuid()
128                    throws com.liferay.portal.kernel.exception.SystemException {
129                    return _tasksReview.getUserUuid();
130            }
131    
132            /**
133            * Sets the user uuid of this tasks review.
134            *
135            * @param userUuid the user uuid of this tasks review
136            */
137            public void setUserUuid(java.lang.String userUuid) {
138                    _tasksReview.setUserUuid(userUuid);
139            }
140    
141            /**
142            * Gets the user name of this tasks review.
143            *
144            * @return the user name of this tasks review
145            */
146            public java.lang.String getUserName() {
147                    return _tasksReview.getUserName();
148            }
149    
150            /**
151            * Sets the user name of this tasks review.
152            *
153            * @param userName the user name of this tasks review
154            */
155            public void setUserName(java.lang.String userName) {
156                    _tasksReview.setUserName(userName);
157            }
158    
159            /**
160            * Gets the create date of this tasks review.
161            *
162            * @return the create date of this tasks review
163            */
164            public java.util.Date getCreateDate() {
165                    return _tasksReview.getCreateDate();
166            }
167    
168            /**
169            * Sets the create date of this tasks review.
170            *
171            * @param createDate the create date of this tasks review
172            */
173            public void setCreateDate(java.util.Date createDate) {
174                    _tasksReview.setCreateDate(createDate);
175            }
176    
177            /**
178            * Gets the modified date of this tasks review.
179            *
180            * @return the modified date of this tasks review
181            */
182            public java.util.Date getModifiedDate() {
183                    return _tasksReview.getModifiedDate();
184            }
185    
186            /**
187            * Sets the modified date of this tasks review.
188            *
189            * @param modifiedDate the modified date of this tasks review
190            */
191            public void setModifiedDate(java.util.Date modifiedDate) {
192                    _tasksReview.setModifiedDate(modifiedDate);
193            }
194    
195            /**
196            * Gets the proposal id of this tasks review.
197            *
198            * @return the proposal id of this tasks review
199            */
200            public long getProposalId() {
201                    return _tasksReview.getProposalId();
202            }
203    
204            /**
205            * Sets the proposal id of this tasks review.
206            *
207            * @param proposalId the proposal id of this tasks review
208            */
209            public void setProposalId(long proposalId) {
210                    _tasksReview.setProposalId(proposalId);
211            }
212    
213            /**
214            * Gets the assigned by user id of this tasks review.
215            *
216            * @return the assigned by user id of this tasks review
217            */
218            public long getAssignedByUserId() {
219                    return _tasksReview.getAssignedByUserId();
220            }
221    
222            /**
223            * Sets the assigned by user id of this tasks review.
224            *
225            * @param assignedByUserId the assigned by user id of this tasks review
226            */
227            public void setAssignedByUserId(long assignedByUserId) {
228                    _tasksReview.setAssignedByUserId(assignedByUserId);
229            }
230    
231            /**
232            * Gets the assigned by user uuid of this tasks review.
233            *
234            * @return the assigned by user uuid of this tasks review
235            * @throws SystemException if a system exception occurred
236            */
237            public java.lang.String getAssignedByUserUuid()
238                    throws com.liferay.portal.kernel.exception.SystemException {
239                    return _tasksReview.getAssignedByUserUuid();
240            }
241    
242            /**
243            * Sets the assigned by user uuid of this tasks review.
244            *
245            * @param assignedByUserUuid the assigned by user uuid of this tasks review
246            */
247            public void setAssignedByUserUuid(java.lang.String assignedByUserUuid) {
248                    _tasksReview.setAssignedByUserUuid(assignedByUserUuid);
249            }
250    
251            /**
252            * Gets the assigned by user name of this tasks review.
253            *
254            * @return the assigned by user name of this tasks review
255            */
256            public java.lang.String getAssignedByUserName() {
257                    return _tasksReview.getAssignedByUserName();
258            }
259    
260            /**
261            * Sets the assigned by user name of this tasks review.
262            *
263            * @param assignedByUserName the assigned by user name of this tasks review
264            */
265            public void setAssignedByUserName(java.lang.String assignedByUserName) {
266                    _tasksReview.setAssignedByUserName(assignedByUserName);
267            }
268    
269            /**
270            * Gets the stage of this tasks review.
271            *
272            * @return the stage of this tasks review
273            */
274            public int getStage() {
275                    return _tasksReview.getStage();
276            }
277    
278            /**
279            * Sets the stage of this tasks review.
280            *
281            * @param stage the stage of this tasks review
282            */
283            public void setStage(int stage) {
284                    _tasksReview.setStage(stage);
285            }
286    
287            /**
288            * Gets the completed of this tasks review.
289            *
290            * @return the completed of this tasks review
291            */
292            public boolean getCompleted() {
293                    return _tasksReview.getCompleted();
294            }
295    
296            /**
297            * Determines whether this tasks review is completed.
298            *
299            * @return whether this tasks review is completed
300            */
301            public boolean isCompleted() {
302                    return _tasksReview.isCompleted();
303            }
304    
305            /**
306            * Sets whether this {$entity.humanName} is completed.
307            *
308            * @param completed the completed of this tasks review
309            */
310            public void setCompleted(boolean completed) {
311                    _tasksReview.setCompleted(completed);
312            }
313    
314            /**
315            * Gets the rejected of this tasks review.
316            *
317            * @return the rejected of this tasks review
318            */
319            public boolean getRejected() {
320                    return _tasksReview.getRejected();
321            }
322    
323            /**
324            * Determines whether this tasks review is rejected.
325            *
326            * @return whether this tasks review is rejected
327            */
328            public boolean isRejected() {
329                    return _tasksReview.isRejected();
330            }
331    
332            /**
333            * Sets whether this {$entity.humanName} is rejected.
334            *
335            * @param rejected the rejected of this tasks review
336            */
337            public void setRejected(boolean rejected) {
338                    _tasksReview.setRejected(rejected);
339            }
340    
341            public boolean isNew() {
342                    return _tasksReview.isNew();
343            }
344    
345            public void setNew(boolean n) {
346                    _tasksReview.setNew(n);
347            }
348    
349            public boolean isCachedModel() {
350                    return _tasksReview.isCachedModel();
351            }
352    
353            public void setCachedModel(boolean cachedModel) {
354                    _tasksReview.setCachedModel(cachedModel);
355            }
356    
357            public boolean isEscapedModel() {
358                    return _tasksReview.isEscapedModel();
359            }
360    
361            public void setEscapedModel(boolean escapedModel) {
362                    _tasksReview.setEscapedModel(escapedModel);
363            }
364    
365            public java.io.Serializable getPrimaryKeyObj() {
366                    return _tasksReview.getPrimaryKeyObj();
367            }
368    
369            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
370                    return _tasksReview.getExpandoBridge();
371            }
372    
373            public void setExpandoBridgeAttributes(
374                    com.liferay.portal.service.ServiceContext serviceContext) {
375                    _tasksReview.setExpandoBridgeAttributes(serviceContext);
376            }
377    
378            public java.lang.Object clone() {
379                    return _tasksReview.clone();
380            }
381    
382            public int compareTo(
383                    com.liferay.portlet.tasks.model.TasksReview tasksReview) {
384                    return _tasksReview.compareTo(tasksReview);
385            }
386    
387            public int hashCode() {
388                    return _tasksReview.hashCode();
389            }
390    
391            public com.liferay.portlet.tasks.model.TasksReview toEscapedModel() {
392                    return _tasksReview.toEscapedModel();
393            }
394    
395            public java.lang.String toString() {
396                    return _tasksReview.toString();
397            }
398    
399            public java.lang.String toXmlString() {
400                    return _tasksReview.toXmlString();
401            }
402    
403            public TasksReview getWrappedTasksReview() {
404                    return _tasksReview;
405            }
406    
407            private TasksReview _tasksReview;
408    }