1
14
15 package com.liferay.portlet.expando.model;
16
17
18
34 public class ExpandoValueWrapper implements ExpandoValue {
35 public ExpandoValueWrapper(ExpandoValue expandoValue) {
36 _expandoValue = expandoValue;
37 }
38
39 public long getPrimaryKey() {
40 return _expandoValue.getPrimaryKey();
41 }
42
43 public void setPrimaryKey(long pk) {
44 _expandoValue.setPrimaryKey(pk);
45 }
46
47 public long getValueId() {
48 return _expandoValue.getValueId();
49 }
50
51 public void setValueId(long valueId) {
52 _expandoValue.setValueId(valueId);
53 }
54
55 public long getCompanyId() {
56 return _expandoValue.getCompanyId();
57 }
58
59 public void setCompanyId(long companyId) {
60 _expandoValue.setCompanyId(companyId);
61 }
62
63 public long getTableId() {
64 return _expandoValue.getTableId();
65 }
66
67 public void setTableId(long tableId) {
68 _expandoValue.setTableId(tableId);
69 }
70
71 public long getColumnId() {
72 return _expandoValue.getColumnId();
73 }
74
75 public void setColumnId(long columnId) {
76 _expandoValue.setColumnId(columnId);
77 }
78
79 public long getRowId() {
80 return _expandoValue.getRowId();
81 }
82
83 public void setRowId(long rowId) {
84 _expandoValue.setRowId(rowId);
85 }
86
87 public java.lang.String getClassName() {
88 return _expandoValue.getClassName();
89 }
90
91 public long getClassNameId() {
92 return _expandoValue.getClassNameId();
93 }
94
95 public void setClassNameId(long classNameId) {
96 _expandoValue.setClassNameId(classNameId);
97 }
98
99 public long getClassPK() {
100 return _expandoValue.getClassPK();
101 }
102
103 public void setClassPK(long classPK) {
104 _expandoValue.setClassPK(classPK);
105 }
106
107 public java.lang.String getData() {
108 return _expandoValue.getData();
109 }
110
111 public void setData(java.lang.String data) {
112 _expandoValue.setData(data);
113 }
114
115 public com.liferay.portlet.expando.model.ExpandoValue toEscapedModel() {
116 return _expandoValue.toEscapedModel();
117 }
118
119 public boolean isNew() {
120 return _expandoValue.isNew();
121 }
122
123 public boolean setNew(boolean n) {
124 return _expandoValue.setNew(n);
125 }
126
127 public boolean isCachedModel() {
128 return _expandoValue.isCachedModel();
129 }
130
131 public void setCachedModel(boolean cachedModel) {
132 _expandoValue.setCachedModel(cachedModel);
133 }
134
135 public boolean isEscapedModel() {
136 return _expandoValue.isEscapedModel();
137 }
138
139 public void setEscapedModel(boolean escapedModel) {
140 _expandoValue.setEscapedModel(escapedModel);
141 }
142
143 public java.io.Serializable getPrimaryKeyObj() {
144 return _expandoValue.getPrimaryKeyObj();
145 }
146
147 public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
148 return _expandoValue.getExpandoBridge();
149 }
150
151 public void setExpandoBridgeAttributes(
152 com.liferay.portal.service.ServiceContext serviceContext) {
153 _expandoValue.setExpandoBridgeAttributes(serviceContext);
154 }
155
156 public java.lang.Object clone() {
157 return _expandoValue.clone();
158 }
159
160 public int compareTo(
161 com.liferay.portlet.expando.model.ExpandoValue expandoValue) {
162 return _expandoValue.compareTo(expandoValue);
163 }
164
165 public int hashCode() {
166 return _expandoValue.hashCode();
167 }
168
169 public java.lang.String toString() {
170 return _expandoValue.toString();
171 }
172
173 public java.lang.String toXmlString() {
174 return _expandoValue.toXmlString();
175 }
176
177 public boolean getBoolean()
178 throws com.liferay.portal.kernel.exception.PortalException,
179 com.liferay.portal.kernel.exception.SystemException {
180 return _expandoValue.getBoolean();
181 }
182
183 public boolean[] getBooleanArray()
184 throws com.liferay.portal.kernel.exception.PortalException,
185 com.liferay.portal.kernel.exception.SystemException {
186 return _expandoValue.getBooleanArray();
187 }
188
189 public java.util.Date getDate()
190 throws com.liferay.portal.kernel.exception.PortalException,
191 com.liferay.portal.kernel.exception.SystemException {
192 return _expandoValue.getDate();
193 }
194
195 public java.util.Date[] getDateArray()
196 throws com.liferay.portal.kernel.exception.PortalException,
197 com.liferay.portal.kernel.exception.SystemException {
198 return _expandoValue.getDateArray();
199 }
200
201 public double getDouble()
202 throws com.liferay.portal.kernel.exception.PortalException,
203 com.liferay.portal.kernel.exception.SystemException {
204 return _expandoValue.getDouble();
205 }
206
207 public double[] getDoubleArray()
208 throws com.liferay.portal.kernel.exception.PortalException,
209 com.liferay.portal.kernel.exception.SystemException {
210 return _expandoValue.getDoubleArray();
211 }
212
213 public float getFloat()
214 throws com.liferay.portal.kernel.exception.PortalException,
215 com.liferay.portal.kernel.exception.SystemException {
216 return _expandoValue.getFloat();
217 }
218
219 public float[] getFloatArray()
220 throws com.liferay.portal.kernel.exception.PortalException,
221 com.liferay.portal.kernel.exception.SystemException {
222 return _expandoValue.getFloatArray();
223 }
224
225 public int getInteger()
226 throws com.liferay.portal.kernel.exception.PortalException,
227 com.liferay.portal.kernel.exception.SystemException {
228 return _expandoValue.getInteger();
229 }
230
231 public int[] getIntegerArray()
232 throws com.liferay.portal.kernel.exception.PortalException,
233 com.liferay.portal.kernel.exception.SystemException {
234 return _expandoValue.getIntegerArray();
235 }
236
237 public long getLong()
238 throws com.liferay.portal.kernel.exception.PortalException,
239 com.liferay.portal.kernel.exception.SystemException {
240 return _expandoValue.getLong();
241 }
242
243 public long[] getLongArray()
244 throws com.liferay.portal.kernel.exception.PortalException,
245 com.liferay.portal.kernel.exception.SystemException {
246 return _expandoValue.getLongArray();
247 }
248
249 public short getShort()
250 throws com.liferay.portal.kernel.exception.PortalException,
251 com.liferay.portal.kernel.exception.SystemException {
252 return _expandoValue.getShort();
253 }
254
255 public short[] getShortArray()
256 throws com.liferay.portal.kernel.exception.PortalException,
257 com.liferay.portal.kernel.exception.SystemException {
258 return _expandoValue.getShortArray();
259 }
260
261 public java.lang.String getString()
262 throws com.liferay.portal.kernel.exception.PortalException,
263 com.liferay.portal.kernel.exception.SystemException {
264 return _expandoValue.getString();
265 }
266
267 public java.lang.String[] getStringArray()
268 throws com.liferay.portal.kernel.exception.PortalException,
269 com.liferay.portal.kernel.exception.SystemException {
270 return _expandoValue.getStringArray();
271 }
272
273 public void setBoolean(boolean data)
274 throws com.liferay.portal.kernel.exception.PortalException,
275 com.liferay.portal.kernel.exception.SystemException {
276 _expandoValue.setBoolean(data);
277 }
278
279 public void setBooleanArray(boolean[] data)
280 throws com.liferay.portal.kernel.exception.PortalException,
281 com.liferay.portal.kernel.exception.SystemException {
282 _expandoValue.setBooleanArray(data);
283 }
284
285 public void setDate(java.util.Date data)
286 throws com.liferay.portal.kernel.exception.PortalException,
287 com.liferay.portal.kernel.exception.SystemException {
288 _expandoValue.setDate(data);
289 }
290
291 public void setDateArray(java.util.Date[] data)
292 throws com.liferay.portal.kernel.exception.PortalException,
293 com.liferay.portal.kernel.exception.SystemException {
294 _expandoValue.setDateArray(data);
295 }
296
297 public void setDouble(double data)
298 throws com.liferay.portal.kernel.exception.PortalException,
299 com.liferay.portal.kernel.exception.SystemException {
300 _expandoValue.setDouble(data);
301 }
302
303 public void setDoubleArray(double[] data)
304 throws com.liferay.portal.kernel.exception.PortalException,
305 com.liferay.portal.kernel.exception.SystemException {
306 _expandoValue.setDoubleArray(data);
307 }
308
309 public void setFloat(float data)
310 throws com.liferay.portal.kernel.exception.PortalException,
311 com.liferay.portal.kernel.exception.SystemException {
312 _expandoValue.setFloat(data);
313 }
314
315 public void setFloatArray(float[] data)
316 throws com.liferay.portal.kernel.exception.PortalException,
317 com.liferay.portal.kernel.exception.SystemException {
318 _expandoValue.setFloatArray(data);
319 }
320
321 public void setInteger(int data)
322 throws com.liferay.portal.kernel.exception.PortalException,
323 com.liferay.portal.kernel.exception.SystemException {
324 _expandoValue.setInteger(data);
325 }
326
327 public void setIntegerArray(int[] data)
328 throws com.liferay.portal.kernel.exception.PortalException,
329 com.liferay.portal.kernel.exception.SystemException {
330 _expandoValue.setIntegerArray(data);
331 }
332
333 public void setLong(long data)
334 throws com.liferay.portal.kernel.exception.PortalException,
335 com.liferay.portal.kernel.exception.SystemException {
336 _expandoValue.setLong(data);
337 }
338
339 public void setLongArray(long[] data)
340 throws com.liferay.portal.kernel.exception.PortalException,
341 com.liferay.portal.kernel.exception.SystemException {
342 _expandoValue.setLongArray(data);
343 }
344
345 public void setShort(short data)
346 throws com.liferay.portal.kernel.exception.PortalException,
347 com.liferay.portal.kernel.exception.SystemException {
348 _expandoValue.setShort(data);
349 }
350
351 public void setShortArray(short[] data)
352 throws com.liferay.portal.kernel.exception.PortalException,
353 com.liferay.portal.kernel.exception.SystemException {
354 _expandoValue.setShortArray(data);
355 }
356
357 public void setString(java.lang.String data)
358 throws com.liferay.portal.kernel.exception.PortalException,
359 com.liferay.portal.kernel.exception.SystemException {
360 _expandoValue.setString(data);
361 }
362
363 public void setStringArray(java.lang.String[] data)
364 throws com.liferay.portal.kernel.exception.PortalException,
365 com.liferay.portal.kernel.exception.SystemException {
366 _expandoValue.setStringArray(data);
367 }
368
369 public ExpandoValue getWrappedExpandoValue() {
370 return _expandoValue;
371 }
372
373 private ExpandoValue _expandoValue;
374 }