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