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.shopping.model;
16  
17  /**
18   * <a href="ShoppingItemFieldSoap.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 ShoppingItemField}.
27   * </p>
28   *
29   * @author    Brian Wing Shun Chan
30   * @see       ShoppingItemField
31   * @generated
32   */
33  public class ShoppingItemFieldWrapper implements ShoppingItemField {
34      public ShoppingItemFieldWrapper(ShoppingItemField shoppingItemField) {
35          _shoppingItemField = shoppingItemField;
36      }
37  
38      public long getPrimaryKey() {
39          return _shoppingItemField.getPrimaryKey();
40      }
41  
42      public void setPrimaryKey(long pk) {
43          _shoppingItemField.setPrimaryKey(pk);
44      }
45  
46      public long getItemFieldId() {
47          return _shoppingItemField.getItemFieldId();
48      }
49  
50      public void setItemFieldId(long itemFieldId) {
51          _shoppingItemField.setItemFieldId(itemFieldId);
52      }
53  
54      public long getItemId() {
55          return _shoppingItemField.getItemId();
56      }
57  
58      public void setItemId(long itemId) {
59          _shoppingItemField.setItemId(itemId);
60      }
61  
62      public java.lang.String getName() {
63          return _shoppingItemField.getName();
64      }
65  
66      public void setName(java.lang.String name) {
67          _shoppingItemField.setName(name);
68      }
69  
70      public java.lang.String getValues() {
71          return _shoppingItemField.getValues();
72      }
73  
74      public void setValues(java.lang.String values) {
75          _shoppingItemField.setValues(values);
76      }
77  
78      public java.lang.String getDescription() {
79          return _shoppingItemField.getDescription();
80      }
81  
82      public void setDescription(java.lang.String description) {
83          _shoppingItemField.setDescription(description);
84      }
85  
86      public boolean isNew() {
87          return _shoppingItemField.isNew();
88      }
89  
90      public boolean setNew(boolean n) {
91          return _shoppingItemField.setNew(n);
92      }
93  
94      public boolean isCachedModel() {
95          return _shoppingItemField.isCachedModel();
96      }
97  
98      public void setCachedModel(boolean cachedModel) {
99          _shoppingItemField.setCachedModel(cachedModel);
100     }
101 
102     public boolean isEscapedModel() {
103         return _shoppingItemField.isEscapedModel();
104     }
105 
106     public void setEscapedModel(boolean escapedModel) {
107         _shoppingItemField.setEscapedModel(escapedModel);
108     }
109 
110     public java.io.Serializable getPrimaryKeyObj() {
111         return _shoppingItemField.getPrimaryKeyObj();
112     }
113 
114     public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
115         return _shoppingItemField.getExpandoBridge();
116     }
117 
118     public void setExpandoBridgeAttributes(
119         com.liferay.portal.service.ServiceContext serviceContext) {
120         _shoppingItemField.setExpandoBridgeAttributes(serviceContext);
121     }
122 
123     public java.lang.Object clone() {
124         return _shoppingItemField.clone();
125     }
126 
127     public int compareTo(
128         com.liferay.portlet.shopping.model.ShoppingItemField shoppingItemField) {
129         return _shoppingItemField.compareTo(shoppingItemField);
130     }
131 
132     public int hashCode() {
133         return _shoppingItemField.hashCode();
134     }
135 
136     public com.liferay.portlet.shopping.model.ShoppingItemField toEscapedModel() {
137         return _shoppingItemField.toEscapedModel();
138     }
139 
140     public java.lang.String toString() {
141         return _shoppingItemField.toString();
142     }
143 
144     public java.lang.String toXmlString() {
145         return _shoppingItemField.toXmlString();
146     }
147 
148     public java.lang.String[] getValuesArray() {
149         return _shoppingItemField.getValuesArray();
150     }
151 
152     public void setValuesArray(java.lang.String[] valuesArray) {
153         _shoppingItemField.setValuesArray(valuesArray);
154     }
155 
156     public ShoppingItemField getWrappedShoppingItemField() {
157         return _shoppingItemField;
158     }
159 
160     private ShoppingItemField _shoppingItemField;
161 }