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