1
14
15 package com.liferay.portlet.softwarecatalog.model;
16
17
33 public class SCProductScreenshotWrapper implements SCProductScreenshot {
34 public SCProductScreenshotWrapper(SCProductScreenshot scProductScreenshot) {
35 _scProductScreenshot = scProductScreenshot;
36 }
37
38 public long getPrimaryKey() {
39 return _scProductScreenshot.getPrimaryKey();
40 }
41
42 public void setPrimaryKey(long pk) {
43 _scProductScreenshot.setPrimaryKey(pk);
44 }
45
46 public long getProductScreenshotId() {
47 return _scProductScreenshot.getProductScreenshotId();
48 }
49
50 public void setProductScreenshotId(long productScreenshotId) {
51 _scProductScreenshot.setProductScreenshotId(productScreenshotId);
52 }
53
54 public long getCompanyId() {
55 return _scProductScreenshot.getCompanyId();
56 }
57
58 public void setCompanyId(long companyId) {
59 _scProductScreenshot.setCompanyId(companyId);
60 }
61
62 public long getGroupId() {
63 return _scProductScreenshot.getGroupId();
64 }
65
66 public void setGroupId(long groupId) {
67 _scProductScreenshot.setGroupId(groupId);
68 }
69
70 public long getProductEntryId() {
71 return _scProductScreenshot.getProductEntryId();
72 }
73
74 public void setProductEntryId(long productEntryId) {
75 _scProductScreenshot.setProductEntryId(productEntryId);
76 }
77
78 public long getThumbnailId() {
79 return _scProductScreenshot.getThumbnailId();
80 }
81
82 public void setThumbnailId(long thumbnailId) {
83 _scProductScreenshot.setThumbnailId(thumbnailId);
84 }
85
86 public long getFullImageId() {
87 return _scProductScreenshot.getFullImageId();
88 }
89
90 public void setFullImageId(long fullImageId) {
91 _scProductScreenshot.setFullImageId(fullImageId);
92 }
93
94 public int getPriority() {
95 return _scProductScreenshot.getPriority();
96 }
97
98 public void setPriority(int priority) {
99 _scProductScreenshot.setPriority(priority);
100 }
101
102 public boolean isNew() {
103 return _scProductScreenshot.isNew();
104 }
105
106 public boolean setNew(boolean n) {
107 return _scProductScreenshot.setNew(n);
108 }
109
110 public boolean isCachedModel() {
111 return _scProductScreenshot.isCachedModel();
112 }
113
114 public void setCachedModel(boolean cachedModel) {
115 _scProductScreenshot.setCachedModel(cachedModel);
116 }
117
118 public boolean isEscapedModel() {
119 return _scProductScreenshot.isEscapedModel();
120 }
121
122 public void setEscapedModel(boolean escapedModel) {
123 _scProductScreenshot.setEscapedModel(escapedModel);
124 }
125
126 public java.io.Serializable getPrimaryKeyObj() {
127 return _scProductScreenshot.getPrimaryKeyObj();
128 }
129
130 public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
131 return _scProductScreenshot.getExpandoBridge();
132 }
133
134 public void setExpandoBridgeAttributes(
135 com.liferay.portal.service.ServiceContext serviceContext) {
136 _scProductScreenshot.setExpandoBridgeAttributes(serviceContext);
137 }
138
139 public java.lang.Object clone() {
140 return _scProductScreenshot.clone();
141 }
142
143 public int compareTo(
144 com.liferay.portlet.softwarecatalog.model.SCProductScreenshot scProductScreenshot) {
145 return _scProductScreenshot.compareTo(scProductScreenshot);
146 }
147
148 public int hashCode() {
149 return _scProductScreenshot.hashCode();
150 }
151
152 public com.liferay.portlet.softwarecatalog.model.SCProductScreenshot toEscapedModel() {
153 return _scProductScreenshot.toEscapedModel();
154 }
155
156 public java.lang.String toString() {
157 return _scProductScreenshot.toString();
158 }
159
160 public java.lang.String toXmlString() {
161 return _scProductScreenshot.toXmlString();
162 }
163
164 public SCProductScreenshot getWrappedSCProductScreenshot() {
165 return _scProductScreenshot;
166 }
167
168 private SCProductScreenshot _scProductScreenshot;
169 }