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.ratings.model;
016    
017    /**
018     * <p>
019     * This class is a wrapper for {@link RatingsEntry}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       RatingsEntry
024     * @generated
025     */
026    public class RatingsEntryWrapper implements RatingsEntry {
027            public RatingsEntryWrapper(RatingsEntry ratingsEntry) {
028                    _ratingsEntry = ratingsEntry;
029            }
030    
031            public long getPrimaryKey() {
032                    return _ratingsEntry.getPrimaryKey();
033            }
034    
035            public void setPrimaryKey(long pk) {
036                    _ratingsEntry.setPrimaryKey(pk);
037            }
038    
039            public long getEntryId() {
040                    return _ratingsEntry.getEntryId();
041            }
042    
043            public void setEntryId(long entryId) {
044                    _ratingsEntry.setEntryId(entryId);
045            }
046    
047            public long getCompanyId() {
048                    return _ratingsEntry.getCompanyId();
049            }
050    
051            public void setCompanyId(long companyId) {
052                    _ratingsEntry.setCompanyId(companyId);
053            }
054    
055            public long getUserId() {
056                    return _ratingsEntry.getUserId();
057            }
058    
059            public void setUserId(long userId) {
060                    _ratingsEntry.setUserId(userId);
061            }
062    
063            public java.lang.String getUserUuid()
064                    throws com.liferay.portal.kernel.exception.SystemException {
065                    return _ratingsEntry.getUserUuid();
066            }
067    
068            public void setUserUuid(java.lang.String userUuid) {
069                    _ratingsEntry.setUserUuid(userUuid);
070            }
071    
072            public java.lang.String getUserName() {
073                    return _ratingsEntry.getUserName();
074            }
075    
076            public void setUserName(java.lang.String userName) {
077                    _ratingsEntry.setUserName(userName);
078            }
079    
080            public java.util.Date getCreateDate() {
081                    return _ratingsEntry.getCreateDate();
082            }
083    
084            public void setCreateDate(java.util.Date createDate) {
085                    _ratingsEntry.setCreateDate(createDate);
086            }
087    
088            public java.util.Date getModifiedDate() {
089                    return _ratingsEntry.getModifiedDate();
090            }
091    
092            public void setModifiedDate(java.util.Date modifiedDate) {
093                    _ratingsEntry.setModifiedDate(modifiedDate);
094            }
095    
096            public java.lang.String getClassName() {
097                    return _ratingsEntry.getClassName();
098            }
099    
100            public long getClassNameId() {
101                    return _ratingsEntry.getClassNameId();
102            }
103    
104            public void setClassNameId(long classNameId) {
105                    _ratingsEntry.setClassNameId(classNameId);
106            }
107    
108            public long getClassPK() {
109                    return _ratingsEntry.getClassPK();
110            }
111    
112            public void setClassPK(long classPK) {
113                    _ratingsEntry.setClassPK(classPK);
114            }
115    
116            public double getScore() {
117                    return _ratingsEntry.getScore();
118            }
119    
120            public void setScore(double score) {
121                    _ratingsEntry.setScore(score);
122            }
123    
124            public com.liferay.portlet.ratings.model.RatingsEntry toEscapedModel() {
125                    return _ratingsEntry.toEscapedModel();
126            }
127    
128            public boolean isNew() {
129                    return _ratingsEntry.isNew();
130            }
131    
132            public void setNew(boolean n) {
133                    _ratingsEntry.setNew(n);
134            }
135    
136            public boolean isCachedModel() {
137                    return _ratingsEntry.isCachedModel();
138            }
139    
140            public void setCachedModel(boolean cachedModel) {
141                    _ratingsEntry.setCachedModel(cachedModel);
142            }
143    
144            public boolean isEscapedModel() {
145                    return _ratingsEntry.isEscapedModel();
146            }
147    
148            public void setEscapedModel(boolean escapedModel) {
149                    _ratingsEntry.setEscapedModel(escapedModel);
150            }
151    
152            public java.io.Serializable getPrimaryKeyObj() {
153                    return _ratingsEntry.getPrimaryKeyObj();
154            }
155    
156            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
157                    return _ratingsEntry.getExpandoBridge();
158            }
159    
160            public void setExpandoBridgeAttributes(
161                    com.liferay.portal.service.ServiceContext serviceContext) {
162                    _ratingsEntry.setExpandoBridgeAttributes(serviceContext);
163            }
164    
165            public java.lang.Object clone() {
166                    return _ratingsEntry.clone();
167            }
168    
169            public int compareTo(
170                    com.liferay.portlet.ratings.model.RatingsEntry ratingsEntry) {
171                    return _ratingsEntry.compareTo(ratingsEntry);
172            }
173    
174            public int hashCode() {
175                    return _ratingsEntry.hashCode();
176            }
177    
178            public java.lang.String toString() {
179                    return _ratingsEntry.toString();
180            }
181    
182            public java.lang.String toXmlString() {
183                    return _ratingsEntry.toXmlString();
184            }
185    
186            public RatingsEntry getWrappedRatingsEntry() {
187                    return _ratingsEntry;
188            }
189    
190            private RatingsEntry _ratingsEntry;
191    }