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.softwarecatalog.model;
016    
017    /**
018     * <p>
019     * This class is a wrapper for {@link SCProductScreenshot}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       SCProductScreenshot
024     * @generated
025     */
026    public class SCProductScreenshotWrapper implements SCProductScreenshot {
027            public SCProductScreenshotWrapper(SCProductScreenshot scProductScreenshot) {
028                    _scProductScreenshot = scProductScreenshot;
029            }
030    
031            /**
032            * Gets the primary key of this s c product screenshot.
033            *
034            * @return the primary key of this s c product screenshot
035            */
036            public long getPrimaryKey() {
037                    return _scProductScreenshot.getPrimaryKey();
038            }
039    
040            /**
041            * Sets the primary key of this s c product screenshot
042            *
043            * @param pk the primary key of this s c product screenshot
044            */
045            public void setPrimaryKey(long pk) {
046                    _scProductScreenshot.setPrimaryKey(pk);
047            }
048    
049            /**
050            * Gets the product screenshot id of this s c product screenshot.
051            *
052            * @return the product screenshot id of this s c product screenshot
053            */
054            public long getProductScreenshotId() {
055                    return _scProductScreenshot.getProductScreenshotId();
056            }
057    
058            /**
059            * Sets the product screenshot id of this s c product screenshot.
060            *
061            * @param productScreenshotId the product screenshot id of this s c product screenshot
062            */
063            public void setProductScreenshotId(long productScreenshotId) {
064                    _scProductScreenshot.setProductScreenshotId(productScreenshotId);
065            }
066    
067            /**
068            * Gets the company id of this s c product screenshot.
069            *
070            * @return the company id of this s c product screenshot
071            */
072            public long getCompanyId() {
073                    return _scProductScreenshot.getCompanyId();
074            }
075    
076            /**
077            * Sets the company id of this s c product screenshot.
078            *
079            * @param companyId the company id of this s c product screenshot
080            */
081            public void setCompanyId(long companyId) {
082                    _scProductScreenshot.setCompanyId(companyId);
083            }
084    
085            /**
086            * Gets the group id of this s c product screenshot.
087            *
088            * @return the group id of this s c product screenshot
089            */
090            public long getGroupId() {
091                    return _scProductScreenshot.getGroupId();
092            }
093    
094            /**
095            * Sets the group id of this s c product screenshot.
096            *
097            * @param groupId the group id of this s c product screenshot
098            */
099            public void setGroupId(long groupId) {
100                    _scProductScreenshot.setGroupId(groupId);
101            }
102    
103            /**
104            * Gets the product entry id of this s c product screenshot.
105            *
106            * @return the product entry id of this s c product screenshot
107            */
108            public long getProductEntryId() {
109                    return _scProductScreenshot.getProductEntryId();
110            }
111    
112            /**
113            * Sets the product entry id of this s c product screenshot.
114            *
115            * @param productEntryId the product entry id of this s c product screenshot
116            */
117            public void setProductEntryId(long productEntryId) {
118                    _scProductScreenshot.setProductEntryId(productEntryId);
119            }
120    
121            /**
122            * Gets the thumbnail id of this s c product screenshot.
123            *
124            * @return the thumbnail id of this s c product screenshot
125            */
126            public long getThumbnailId() {
127                    return _scProductScreenshot.getThumbnailId();
128            }
129    
130            /**
131            * Sets the thumbnail id of this s c product screenshot.
132            *
133            * @param thumbnailId the thumbnail id of this s c product screenshot
134            */
135            public void setThumbnailId(long thumbnailId) {
136                    _scProductScreenshot.setThumbnailId(thumbnailId);
137            }
138    
139            /**
140            * Gets the full image id of this s c product screenshot.
141            *
142            * @return the full image id of this s c product screenshot
143            */
144            public long getFullImageId() {
145                    return _scProductScreenshot.getFullImageId();
146            }
147    
148            /**
149            * Sets the full image id of this s c product screenshot.
150            *
151            * @param fullImageId the full image id of this s c product screenshot
152            */
153            public void setFullImageId(long fullImageId) {
154                    _scProductScreenshot.setFullImageId(fullImageId);
155            }
156    
157            /**
158            * Gets the priority of this s c product screenshot.
159            *
160            * @return the priority of this s c product screenshot
161            */
162            public int getPriority() {
163                    return _scProductScreenshot.getPriority();
164            }
165    
166            /**
167            * Sets the priority of this s c product screenshot.
168            *
169            * @param priority the priority of this s c product screenshot
170            */
171            public void setPriority(int priority) {
172                    _scProductScreenshot.setPriority(priority);
173            }
174    
175            public boolean isNew() {
176                    return _scProductScreenshot.isNew();
177            }
178    
179            public void setNew(boolean n) {
180                    _scProductScreenshot.setNew(n);
181            }
182    
183            public boolean isCachedModel() {
184                    return _scProductScreenshot.isCachedModel();
185            }
186    
187            public void setCachedModel(boolean cachedModel) {
188                    _scProductScreenshot.setCachedModel(cachedModel);
189            }
190    
191            public boolean isEscapedModel() {
192                    return _scProductScreenshot.isEscapedModel();
193            }
194    
195            public void setEscapedModel(boolean escapedModel) {
196                    _scProductScreenshot.setEscapedModel(escapedModel);
197            }
198    
199            public java.io.Serializable getPrimaryKeyObj() {
200                    return _scProductScreenshot.getPrimaryKeyObj();
201            }
202    
203            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
204                    return _scProductScreenshot.getExpandoBridge();
205            }
206    
207            public void setExpandoBridgeAttributes(
208                    com.liferay.portal.service.ServiceContext serviceContext) {
209                    _scProductScreenshot.setExpandoBridgeAttributes(serviceContext);
210            }
211    
212            public java.lang.Object clone() {
213                    return _scProductScreenshot.clone();
214            }
215    
216            public int compareTo(
217                    com.liferay.portlet.softwarecatalog.model.SCProductScreenshot scProductScreenshot) {
218                    return _scProductScreenshot.compareTo(scProductScreenshot);
219            }
220    
221            public int hashCode() {
222                    return _scProductScreenshot.hashCode();
223            }
224    
225            public com.liferay.portlet.softwarecatalog.model.SCProductScreenshot toEscapedModel() {
226                    return _scProductScreenshot.toEscapedModel();
227            }
228    
229            public java.lang.String toString() {
230                    return _scProductScreenshot.toString();
231            }
232    
233            public java.lang.String toXmlString() {
234                    return _scProductScreenshot.toXmlString();
235            }
236    
237            public SCProductScreenshot getWrappedSCProductScreenshot() {
238                    return _scProductScreenshot;
239            }
240    
241            private SCProductScreenshot _scProductScreenshot;
242    }