001
014
015 package com.liferay.portlet.softwarecatalog.model;
016
017
026 public class SCProductScreenshotWrapper implements SCProductScreenshot {
027 public SCProductScreenshotWrapper(SCProductScreenshot scProductScreenshot) {
028 _scProductScreenshot = scProductScreenshot;
029 }
030
031
036 public long getPrimaryKey() {
037 return _scProductScreenshot.getPrimaryKey();
038 }
039
040
045 public void setPrimaryKey(long pk) {
046 _scProductScreenshot.setPrimaryKey(pk);
047 }
048
049
054 public long getProductScreenshotId() {
055 return _scProductScreenshot.getProductScreenshotId();
056 }
057
058
063 public void setProductScreenshotId(long productScreenshotId) {
064 _scProductScreenshot.setProductScreenshotId(productScreenshotId);
065 }
066
067
072 public long getCompanyId() {
073 return _scProductScreenshot.getCompanyId();
074 }
075
076
081 public void setCompanyId(long companyId) {
082 _scProductScreenshot.setCompanyId(companyId);
083 }
084
085
090 public long getGroupId() {
091 return _scProductScreenshot.getGroupId();
092 }
093
094
099 public void setGroupId(long groupId) {
100 _scProductScreenshot.setGroupId(groupId);
101 }
102
103
108 public long getProductEntryId() {
109 return _scProductScreenshot.getProductEntryId();
110 }
111
112
117 public void setProductEntryId(long productEntryId) {
118 _scProductScreenshot.setProductEntryId(productEntryId);
119 }
120
121
126 public long getThumbnailId() {
127 return _scProductScreenshot.getThumbnailId();
128 }
129
130
135 public void setThumbnailId(long thumbnailId) {
136 _scProductScreenshot.setThumbnailId(thumbnailId);
137 }
138
139
144 public long getFullImageId() {
145 return _scProductScreenshot.getFullImageId();
146 }
147
148
153 public void setFullImageId(long fullImageId) {
154 _scProductScreenshot.setFullImageId(fullImageId);
155 }
156
157
162 public int getPriority() {
163 return _scProductScreenshot.getPriority();
164 }
165
166
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 }