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="ExpandoRowSoap.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 ExpandoRow}.
27   * </p>
28   *
29   * @author    Brian Wing Shun Chan
30   * @see       ExpandoRow
31   * @generated
32   */
33  public class ExpandoRowWrapper implements ExpandoRow {
34      public ExpandoRowWrapper(ExpandoRow expandoRow) {
35          _expandoRow = expandoRow;
36      }
37  
38      public long getPrimaryKey() {
39          return _expandoRow.getPrimaryKey();
40      }
41  
42      public void setPrimaryKey(long pk) {
43          _expandoRow.setPrimaryKey(pk);
44      }
45  
46      public long getRowId() {
47          return _expandoRow.getRowId();
48      }
49  
50      public void setRowId(long rowId) {
51          _expandoRow.setRowId(rowId);
52      }
53  
54      public long getCompanyId() {
55          return _expandoRow.getCompanyId();
56      }
57  
58      public void setCompanyId(long companyId) {
59          _expandoRow.setCompanyId(companyId);
60      }
61  
62      public long getTableId() {
63          return _expandoRow.getTableId();
64      }
65  
66      public void setTableId(long tableId) {
67          _expandoRow.setTableId(tableId);
68      }
69  
70      public long getClassPK() {
71          return _expandoRow.getClassPK();
72      }
73  
74      public void setClassPK(long classPK) {
75          _expandoRow.setClassPK(classPK);
76      }
77  
78      public boolean isNew() {
79          return _expandoRow.isNew();
80      }
81  
82      public boolean setNew(boolean n) {
83          return _expandoRow.setNew(n);
84      }
85  
86      public boolean isCachedModel() {
87          return _expandoRow.isCachedModel();
88      }
89  
90      public void setCachedModel(boolean cachedModel) {
91          _expandoRow.setCachedModel(cachedModel);
92      }
93  
94      public boolean isEscapedModel() {
95          return _expandoRow.isEscapedModel();
96      }
97  
98      public void setEscapedModel(boolean escapedModel) {
99          _expandoRow.setEscapedModel(escapedModel);
100     }
101 
102     public java.io.Serializable getPrimaryKeyObj() {
103         return _expandoRow.getPrimaryKeyObj();
104     }
105 
106     public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
107         return _expandoRow.getExpandoBridge();
108     }
109 
110     public void setExpandoBridgeAttributes(
111         com.liferay.portal.service.ServiceContext serviceContext) {
112         _expandoRow.setExpandoBridgeAttributes(serviceContext);
113     }
114 
115     public java.lang.Object clone() {
116         return _expandoRow.clone();
117     }
118 
119     public int compareTo(
120         com.liferay.portlet.expando.model.ExpandoRow expandoRow) {
121         return _expandoRow.compareTo(expandoRow);
122     }
123 
124     public int hashCode() {
125         return _expandoRow.hashCode();
126     }
127 
128     public com.liferay.portlet.expando.model.ExpandoRow toEscapedModel() {
129         return _expandoRow.toEscapedModel();
130     }
131 
132     public java.lang.String toString() {
133         return _expandoRow.toString();
134     }
135 
136     public java.lang.String toXmlString() {
137         return _expandoRow.toXmlString();
138     }
139 
140     public ExpandoRow getWrappedExpandoRow() {
141         return _expandoRow;
142     }
143 
144     private ExpandoRow _expandoRow;
145 }