1   /**
2    * Copyright (c) 2000-2009 Liferay, Inc. All rights reserved.
3    *
4    * Permission is hereby granted, free of charge, to any person obtaining a copy
5    * of this software and associated documentation files (the "Software"), to deal
6    * in the Software without restriction, including without limitation the rights
7    * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8    * copies of the Software, and to permit persons to whom the Software is
9    * furnished to do so, subject to the following conditions:
10   *
11   * The above copyright notice and this permission notice shall be included in
12   * all copies or substantial portions of the Software.
13   *
14   * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15   * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16   * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17   * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18   * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19   * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20   * SOFTWARE.
21   */
22  
23  package com.liferay.portlet.expando.model;
24  
25  
26  /**
27   * <a href="ExpandoValueSoap.java.html"><b><i>View Source</i></b></a>
28   *
29   * <p>
30   * ServiceBuilder generated this class. Modifications in this class will be
31   * overwritten the next time is generated.
32   * </p>
33   *
34   * <p>
35   * This class is a wrapper for {@link ExpandoValue}.
36   * </p>
37   *
38   * @author    Brian Wing Shun Chan
39   * @see       ExpandoValue
40   * @generated
41   */
42  public class ExpandoValueWrapper implements ExpandoValue {
43      public ExpandoValueWrapper(ExpandoValue expandoValue) {
44          _expandoValue = expandoValue;
45      }
46  
47      public long getPrimaryKey() {
48          return _expandoValue.getPrimaryKey();
49      }
50  
51      public void setPrimaryKey(long pk) {
52          _expandoValue.setPrimaryKey(pk);
53      }
54  
55      public long getValueId() {
56          return _expandoValue.getValueId();
57      }
58  
59      public void setValueId(long valueId) {
60          _expandoValue.setValueId(valueId);
61      }
62  
63      public long getCompanyId() {
64          return _expandoValue.getCompanyId();
65      }
66  
67      public void setCompanyId(long companyId) {
68          _expandoValue.setCompanyId(companyId);
69      }
70  
71      public long getTableId() {
72          return _expandoValue.getTableId();
73      }
74  
75      public void setTableId(long tableId) {
76          _expandoValue.setTableId(tableId);
77      }
78  
79      public long getColumnId() {
80          return _expandoValue.getColumnId();
81      }
82  
83      public void setColumnId(long columnId) {
84          _expandoValue.setColumnId(columnId);
85      }
86  
87      public long getRowId() {
88          return _expandoValue.getRowId();
89      }
90  
91      public void setRowId(long rowId) {
92          _expandoValue.setRowId(rowId);
93      }
94  
95      public java.lang.String getClassName() {
96          return _expandoValue.getClassName();
97      }
98  
99      public long getClassNameId() {
100         return _expandoValue.getClassNameId();
101     }
102 
103     public void setClassNameId(long classNameId) {
104         _expandoValue.setClassNameId(classNameId);
105     }
106 
107     public long getClassPK() {
108         return _expandoValue.getClassPK();
109     }
110 
111     public void setClassPK(long classPK) {
112         _expandoValue.setClassPK(classPK);
113     }
114 
115     public java.lang.String getData() {
116         return _expandoValue.getData();
117     }
118 
119     public void setData(java.lang.String data) {
120         _expandoValue.setData(data);
121     }
122 
123     public com.liferay.portlet.expando.model.ExpandoValue toEscapedModel() {
124         return _expandoValue.toEscapedModel();
125     }
126 
127     public boolean isNew() {
128         return _expandoValue.isNew();
129     }
130 
131     public boolean setNew(boolean n) {
132         return _expandoValue.setNew(n);
133     }
134 
135     public boolean isCachedModel() {
136         return _expandoValue.isCachedModel();
137     }
138 
139     public void setCachedModel(boolean cachedModel) {
140         _expandoValue.setCachedModel(cachedModel);
141     }
142 
143     public boolean isEscapedModel() {
144         return _expandoValue.isEscapedModel();
145     }
146 
147     public void setEscapedModel(boolean escapedModel) {
148         _expandoValue.setEscapedModel(escapedModel);
149     }
150 
151     public java.io.Serializable getPrimaryKeyObj() {
152         return _expandoValue.getPrimaryKeyObj();
153     }
154 
155     public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
156         return _expandoValue.getExpandoBridge();
157     }
158 
159     public void setExpandoBridgeAttributes(
160         com.liferay.portal.service.ServiceContext serviceContext) {
161         _expandoValue.setExpandoBridgeAttributes(serviceContext);
162     }
163 
164     public java.lang.Object clone() {
165         return _expandoValue.clone();
166     }
167 
168     public int compareTo(
169         com.liferay.portlet.expando.model.ExpandoValue expandoValue) {
170         return _expandoValue.compareTo(expandoValue);
171     }
172 
173     public int hashCode() {
174         return _expandoValue.hashCode();
175     }
176 
177     public java.lang.String toString() {
178         return _expandoValue.toString();
179     }
180 
181     public java.lang.String toXmlString() {
182         return _expandoValue.toXmlString();
183     }
184 
185     public boolean getBoolean()
186         throws com.liferay.portal.PortalException,
187             com.liferay.portal.SystemException {
188         return _expandoValue.getBoolean();
189     }
190 
191     public boolean[] getBooleanArray()
192         throws com.liferay.portal.PortalException,
193             com.liferay.portal.SystemException {
194         return _expandoValue.getBooleanArray();
195     }
196 
197     public java.util.Date getDate()
198         throws com.liferay.portal.PortalException,
199             com.liferay.portal.SystemException {
200         return _expandoValue.getDate();
201     }
202 
203     public java.util.Date[] getDateArray()
204         throws com.liferay.portal.PortalException,
205             com.liferay.portal.SystemException {
206         return _expandoValue.getDateArray();
207     }
208 
209     public double getDouble()
210         throws com.liferay.portal.PortalException,
211             com.liferay.portal.SystemException {
212         return _expandoValue.getDouble();
213     }
214 
215     public double[] getDoubleArray()
216         throws com.liferay.portal.PortalException,
217             com.liferay.portal.SystemException {
218         return _expandoValue.getDoubleArray();
219     }
220 
221     public float getFloat()
222         throws com.liferay.portal.PortalException,
223             com.liferay.portal.SystemException {
224         return _expandoValue.getFloat();
225     }
226 
227     public float[] getFloatArray()
228         throws com.liferay.portal.PortalException,
229             com.liferay.portal.SystemException {
230         return _expandoValue.getFloatArray();
231     }
232 
233     public int getInteger()
234         throws com.liferay.portal.PortalException,
235             com.liferay.portal.SystemException {
236         return _expandoValue.getInteger();
237     }
238 
239     public int[] getIntegerArray()
240         throws com.liferay.portal.PortalException,
241             com.liferay.portal.SystemException {
242         return _expandoValue.getIntegerArray();
243     }
244 
245     public long getLong()
246         throws com.liferay.portal.PortalException,
247             com.liferay.portal.SystemException {
248         return _expandoValue.getLong();
249     }
250 
251     public long[] getLongArray()
252         throws com.liferay.portal.PortalException,
253             com.liferay.portal.SystemException {
254         return _expandoValue.getLongArray();
255     }
256 
257     public short getShort()
258         throws com.liferay.portal.PortalException,
259             com.liferay.portal.SystemException {
260         return _expandoValue.getShort();
261     }
262 
263     public short[] getShortArray()
264         throws com.liferay.portal.PortalException,
265             com.liferay.portal.SystemException {
266         return _expandoValue.getShortArray();
267     }
268 
269     public java.lang.String getString()
270         throws com.liferay.portal.PortalException,
271             com.liferay.portal.SystemException {
272         return _expandoValue.getString();
273     }
274 
275     public java.lang.String[] getStringArray()
276         throws com.liferay.portal.PortalException,
277             com.liferay.portal.SystemException {
278         return _expandoValue.getStringArray();
279     }
280 
281     public void setBoolean(boolean data)
282         throws com.liferay.portal.PortalException,
283             com.liferay.portal.SystemException {
284         _expandoValue.setBoolean(data);
285     }
286 
287     public void setBooleanArray(boolean[] data)
288         throws com.liferay.portal.PortalException,
289             com.liferay.portal.SystemException {
290         _expandoValue.setBooleanArray(data);
291     }
292 
293     public void setDate(java.util.Date data)
294         throws com.liferay.portal.PortalException,
295             com.liferay.portal.SystemException {
296         _expandoValue.setDate(data);
297     }
298 
299     public void setDateArray(java.util.Date[] data)
300         throws com.liferay.portal.PortalException,
301             com.liferay.portal.SystemException {
302         _expandoValue.setDateArray(data);
303     }
304 
305     public void setDouble(double data)
306         throws com.liferay.portal.PortalException,
307             com.liferay.portal.SystemException {
308         _expandoValue.setDouble(data);
309     }
310 
311     public void setDoubleArray(double[] data)
312         throws com.liferay.portal.PortalException,
313             com.liferay.portal.SystemException {
314         _expandoValue.setDoubleArray(data);
315     }
316 
317     public void setFloat(float data)
318         throws com.liferay.portal.PortalException,
319             com.liferay.portal.SystemException {
320         _expandoValue.setFloat(data);
321     }
322 
323     public void setFloatArray(float[] data)
324         throws com.liferay.portal.PortalException,
325             com.liferay.portal.SystemException {
326         _expandoValue.setFloatArray(data);
327     }
328 
329     public void setInteger(int data)
330         throws com.liferay.portal.PortalException,
331             com.liferay.portal.SystemException {
332         _expandoValue.setInteger(data);
333     }
334 
335     public void setIntegerArray(int[] data)
336         throws com.liferay.portal.PortalException,
337             com.liferay.portal.SystemException {
338         _expandoValue.setIntegerArray(data);
339     }
340 
341     public void setLong(long data)
342         throws com.liferay.portal.PortalException,
343             com.liferay.portal.SystemException {
344         _expandoValue.setLong(data);
345     }
346 
347     public void setLongArray(long[] data)
348         throws com.liferay.portal.PortalException,
349             com.liferay.portal.SystemException {
350         _expandoValue.setLongArray(data);
351     }
352 
353     public void setShort(short data)
354         throws com.liferay.portal.PortalException,
355             com.liferay.portal.SystemException {
356         _expandoValue.setShort(data);
357     }
358 
359     public void setShortArray(short[] data)
360         throws com.liferay.portal.PortalException,
361             com.liferay.portal.SystemException {
362         _expandoValue.setShortArray(data);
363     }
364 
365     public void setString(java.lang.String data)
366         throws com.liferay.portal.PortalException,
367             com.liferay.portal.SystemException {
368         _expandoValue.setString(data);
369     }
370 
371     public void setStringArray(java.lang.String[] data)
372         throws com.liferay.portal.PortalException,
373             com.liferay.portal.SystemException {
374         _expandoValue.setStringArray(data);
375     }
376 
377     public ExpandoValue getWrappedExpandoValue() {
378         return _expandoValue;
379     }
380 
381     private ExpandoValue _expandoValue;
382 }