1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * The contents of this file are subject to the terms of the Liferay Enterprise
5    * Subscription License ("License"). You may not use this file except in
6    * compliance with the License. You can obtain a copy of the License by
7    * contacting Liferay, Inc. See the License for the specific language governing
8    * permissions and limitations under the License, including but not limited to
9    * distribution rights of the Software.
10   *
11   *
12   *
13   */
14  
15  package com.liferay.portlet.expando.model;
16  
17  /**
18   * <a href="ExpandoColumnSoap.java.html"><b><i>View Source</i></b></a>
19   *
20   * <p>
21   * ServiceBuilder generated this class. Modifications in this class will be
22   * overwritten the next time is generated.
23   * </p>
24   *
25   * <p>
26   * This class is a wrapper for {@link ExpandoColumn}.
27   * </p>
28   *
29   * @author    Brian Wing Shun Chan
30   * @see       ExpandoColumn
31   * @generated
32   */
33  public class ExpandoColumnWrapper implements ExpandoColumn {
34      public ExpandoColumnWrapper(ExpandoColumn expandoColumn) {
35          _expandoColumn = expandoColumn;
36      }
37  
38      public long getPrimaryKey() {
39          return _expandoColumn.getPrimaryKey();
40      }
41  
42      public void setPrimaryKey(long pk) {
43          _expandoColumn.setPrimaryKey(pk);
44      }
45  
46      public long getColumnId() {
47          return _expandoColumn.getColumnId();
48      }
49  
50      public void setColumnId(long columnId) {
51          _expandoColumn.setColumnId(columnId);
52      }
53  
54      public long getCompanyId() {
55          return _expandoColumn.getCompanyId();
56      }
57  
58      public void setCompanyId(long companyId) {
59          _expandoColumn.setCompanyId(companyId);
60      }
61  
62      public long getTableId() {
63          return _expandoColumn.getTableId();
64      }
65  
66      public void setTableId(long tableId) {
67          _expandoColumn.setTableId(tableId);
68      }
69  
70      public java.lang.String getName() {
71          return _expandoColumn.getName();
72      }
73  
74      public void setName(java.lang.String name) {
75          _expandoColumn.setName(name);
76      }
77  
78      public int getType() {
79          return _expandoColumn.getType();
80      }
81  
82      public void setType(int type) {
83          _expandoColumn.setType(type);
84      }
85  
86      public java.lang.String getDefaultData() {
87          return _expandoColumn.getDefaultData();
88      }
89  
90      public void setDefaultData(java.lang.String defaultData) {
91          _expandoColumn.setDefaultData(defaultData);
92      }
93  
94      public java.lang.String getTypeSettings() {
95          return _expandoColumn.getTypeSettings();
96      }
97  
98      public void setTypeSettings(java.lang.String typeSettings) {
99          _expandoColumn.setTypeSettings(typeSettings);
100     }
101 
102     public boolean isNew() {
103         return _expandoColumn.isNew();
104     }
105 
106     public boolean setNew(boolean n) {
107         return _expandoColumn.setNew(n);
108     }
109 
110     public boolean isCachedModel() {
111         return _expandoColumn.isCachedModel();
112     }
113 
114     public void setCachedModel(boolean cachedModel) {
115         _expandoColumn.setCachedModel(cachedModel);
116     }
117 
118     public boolean isEscapedModel() {
119         return _expandoColumn.isEscapedModel();
120     }
121 
122     public void setEscapedModel(boolean escapedModel) {
123         _expandoColumn.setEscapedModel(escapedModel);
124     }
125 
126     public java.io.Serializable getPrimaryKeyObj() {
127         return _expandoColumn.getPrimaryKeyObj();
128     }
129 
130     public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
131         return _expandoColumn.getExpandoBridge();
132     }
133 
134     public void setExpandoBridgeAttributes(
135         com.liferay.portal.service.ServiceContext serviceContext) {
136         _expandoColumn.setExpandoBridgeAttributes(serviceContext);
137     }
138 
139     public java.lang.Object clone() {
140         return _expandoColumn.clone();
141     }
142 
143     public int compareTo(
144         com.liferay.portlet.expando.model.ExpandoColumn expandoColumn) {
145         return _expandoColumn.compareTo(expandoColumn);
146     }
147 
148     public int hashCode() {
149         return _expandoColumn.hashCode();
150     }
151 
152     public com.liferay.portlet.expando.model.ExpandoColumn toEscapedModel() {
153         return _expandoColumn.toEscapedModel();
154     }
155 
156     public java.lang.String toString() {
157         return _expandoColumn.toString();
158     }
159 
160     public java.lang.String toXmlString() {
161         return _expandoColumn.toXmlString();
162     }
163 
164     public java.io.Serializable getDefaultValue() {
165         return _expandoColumn.getDefaultValue();
166     }
167 
168     public com.liferay.portal.kernel.util.UnicodeProperties getTypeSettingsProperties() {
169         return _expandoColumn.getTypeSettingsProperties();
170     }
171 
172     public void setTypeSettingsProperties(
173         com.liferay.portal.kernel.util.UnicodeProperties typeSettingsProperties) {
174         _expandoColumn.setTypeSettingsProperties(typeSettingsProperties);
175     }
176 
177     public ExpandoColumn getWrappedExpandoColumn() {
178         return _expandoColumn;
179     }
180 
181     private ExpandoColumn _expandoColumn;
182 }