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