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 public Class<?> getModelClass() {
032 return SCProductScreenshot.class;
033 }
034
035 public String getModelClassName() {
036 return SCProductScreenshot.class.getName();
037 }
038
039
044 public long getPrimaryKey() {
045 return _scProductScreenshot.getPrimaryKey();
046 }
047
048
053 public void setPrimaryKey(long primaryKey) {
054 _scProductScreenshot.setPrimaryKey(primaryKey);
055 }
056
057
062 public long getProductScreenshotId() {
063 return _scProductScreenshot.getProductScreenshotId();
064 }
065
066
071 public void setProductScreenshotId(long productScreenshotId) {
072 _scProductScreenshot.setProductScreenshotId(productScreenshotId);
073 }
074
075
080 public long getCompanyId() {
081 return _scProductScreenshot.getCompanyId();
082 }
083
084
089 public void setCompanyId(long companyId) {
090 _scProductScreenshot.setCompanyId(companyId);
091 }
092
093
098 public long getGroupId() {
099 return _scProductScreenshot.getGroupId();
100 }
101
102
107 public void setGroupId(long groupId) {
108 _scProductScreenshot.setGroupId(groupId);
109 }
110
111
116 public long getProductEntryId() {
117 return _scProductScreenshot.getProductEntryId();
118 }
119
120
125 public void setProductEntryId(long productEntryId) {
126 _scProductScreenshot.setProductEntryId(productEntryId);
127 }
128
129
134 public long getThumbnailId() {
135 return _scProductScreenshot.getThumbnailId();
136 }
137
138
143 public void setThumbnailId(long thumbnailId) {
144 _scProductScreenshot.setThumbnailId(thumbnailId);
145 }
146
147
152 public long getFullImageId() {
153 return _scProductScreenshot.getFullImageId();
154 }
155
156
161 public void setFullImageId(long fullImageId) {
162 _scProductScreenshot.setFullImageId(fullImageId);
163 }
164
165
170 public int getPriority() {
171 return _scProductScreenshot.getPriority();
172 }
173
174
179 public void setPriority(int priority) {
180 _scProductScreenshot.setPriority(priority);
181 }
182
183 public boolean isNew() {
184 return _scProductScreenshot.isNew();
185 }
186
187 public void setNew(boolean n) {
188 _scProductScreenshot.setNew(n);
189 }
190
191 public boolean isCachedModel() {
192 return _scProductScreenshot.isCachedModel();
193 }
194
195 public void setCachedModel(boolean cachedModel) {
196 _scProductScreenshot.setCachedModel(cachedModel);
197 }
198
199 public boolean isEscapedModel() {
200 return _scProductScreenshot.isEscapedModel();
201 }
202
203 public void setEscapedModel(boolean escapedModel) {
204 _scProductScreenshot.setEscapedModel(escapedModel);
205 }
206
207 public java.io.Serializable getPrimaryKeyObj() {
208 return _scProductScreenshot.getPrimaryKeyObj();
209 }
210
211 public void setPrimaryKeyObj(java.io.Serializable primaryKeyObj) {
212 _scProductScreenshot.setPrimaryKeyObj(primaryKeyObj);
213 }
214
215 public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
216 return _scProductScreenshot.getExpandoBridge();
217 }
218
219 public void setExpandoBridgeAttributes(
220 com.liferay.portal.service.ServiceContext serviceContext) {
221 _scProductScreenshot.setExpandoBridgeAttributes(serviceContext);
222 }
223
224 @Override
225 public java.lang.Object clone() {
226 return new SCProductScreenshotWrapper((SCProductScreenshot)_scProductScreenshot.clone());
227 }
228
229 public int compareTo(
230 com.liferay.portlet.softwarecatalog.model.SCProductScreenshot scProductScreenshot) {
231 return _scProductScreenshot.compareTo(scProductScreenshot);
232 }
233
234 @Override
235 public int hashCode() {
236 return _scProductScreenshot.hashCode();
237 }
238
239 public com.liferay.portal.model.CacheModel<com.liferay.portlet.softwarecatalog.model.SCProductScreenshot> toCacheModel() {
240 return _scProductScreenshot.toCacheModel();
241 }
242
243 public com.liferay.portlet.softwarecatalog.model.SCProductScreenshot toEscapedModel() {
244 return new SCProductScreenshotWrapper(_scProductScreenshot.toEscapedModel());
245 }
246
247 @Override
248 public java.lang.String toString() {
249 return _scProductScreenshot.toString();
250 }
251
252 public java.lang.String toXmlString() {
253 return _scProductScreenshot.toXmlString();
254 }
255
256 public void persist()
257 throws com.liferay.portal.kernel.exception.SystemException {
258 _scProductScreenshot.persist();
259 }
260
261 public SCProductScreenshot getWrappedSCProductScreenshot() {
262 return _scProductScreenshot;
263 }
264
265 public void resetOriginalValues() {
266 _scProductScreenshot.resetOriginalValues();
267 }
268
269 private SCProductScreenshot _scProductScreenshot;
270 }