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.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            public long getPrimaryKey() {
032                    return _scProductScreenshot.getPrimaryKey();
033            }
034    
035            public void setPrimaryKey(long pk) {
036                    _scProductScreenshot.setPrimaryKey(pk);
037            }
038    
039            public long getProductScreenshotId() {
040                    return _scProductScreenshot.getProductScreenshotId();
041            }
042    
043            public void setProductScreenshotId(long productScreenshotId) {
044                    _scProductScreenshot.setProductScreenshotId(productScreenshotId);
045            }
046    
047            public long getCompanyId() {
048                    return _scProductScreenshot.getCompanyId();
049            }
050    
051            public void setCompanyId(long companyId) {
052                    _scProductScreenshot.setCompanyId(companyId);
053            }
054    
055            public long getGroupId() {
056                    return _scProductScreenshot.getGroupId();
057            }
058    
059            public void setGroupId(long groupId) {
060                    _scProductScreenshot.setGroupId(groupId);
061            }
062    
063            public long getProductEntryId() {
064                    return _scProductScreenshot.getProductEntryId();
065            }
066    
067            public void setProductEntryId(long productEntryId) {
068                    _scProductScreenshot.setProductEntryId(productEntryId);
069            }
070    
071            public long getThumbnailId() {
072                    return _scProductScreenshot.getThumbnailId();
073            }
074    
075            public void setThumbnailId(long thumbnailId) {
076                    _scProductScreenshot.setThumbnailId(thumbnailId);
077            }
078    
079            public long getFullImageId() {
080                    return _scProductScreenshot.getFullImageId();
081            }
082    
083            public void setFullImageId(long fullImageId) {
084                    _scProductScreenshot.setFullImageId(fullImageId);
085            }
086    
087            public int getPriority() {
088                    return _scProductScreenshot.getPriority();
089            }
090    
091            public void setPriority(int priority) {
092                    _scProductScreenshot.setPriority(priority);
093            }
094    
095            public com.liferay.portlet.softwarecatalog.model.SCProductScreenshot toEscapedModel() {
096                    return _scProductScreenshot.toEscapedModel();
097            }
098    
099            public boolean isNew() {
100                    return _scProductScreenshot.isNew();
101            }
102    
103            public void setNew(boolean n) {
104                    _scProductScreenshot.setNew(n);
105            }
106    
107            public boolean isCachedModel() {
108                    return _scProductScreenshot.isCachedModel();
109            }
110    
111            public void setCachedModel(boolean cachedModel) {
112                    _scProductScreenshot.setCachedModel(cachedModel);
113            }
114    
115            public boolean isEscapedModel() {
116                    return _scProductScreenshot.isEscapedModel();
117            }
118    
119            public void setEscapedModel(boolean escapedModel) {
120                    _scProductScreenshot.setEscapedModel(escapedModel);
121            }
122    
123            public java.io.Serializable getPrimaryKeyObj() {
124                    return _scProductScreenshot.getPrimaryKeyObj();
125            }
126    
127            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
128                    return _scProductScreenshot.getExpandoBridge();
129            }
130    
131            public void setExpandoBridgeAttributes(
132                    com.liferay.portal.service.ServiceContext serviceContext) {
133                    _scProductScreenshot.setExpandoBridgeAttributes(serviceContext);
134            }
135    
136            public java.lang.Object clone() {
137                    return _scProductScreenshot.clone();
138            }
139    
140            public int compareTo(
141                    com.liferay.portlet.softwarecatalog.model.SCProductScreenshot scProductScreenshot) {
142                    return _scProductScreenshot.compareTo(scProductScreenshot);
143            }
144    
145            public int hashCode() {
146                    return _scProductScreenshot.hashCode();
147            }
148    
149            public java.lang.String toString() {
150                    return _scProductScreenshot.toString();
151            }
152    
153            public java.lang.String toXmlString() {
154                    return _scProductScreenshot.toXmlString();
155            }
156    
157            public SCProductScreenshot getWrappedSCProductScreenshot() {
158                    return _scProductScreenshot;
159            }
160    
161            private SCProductScreenshot _scProductScreenshot;
162    }