001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portlet.shopping.model;
016    
017    
018    /**
019     * <p>
020     * This class is a wrapper for {@link ShoppingCategory}.
021     * </p>
022     *
023     * @author    Brian Wing Shun Chan
024     * @see       ShoppingCategory
025     * @generated
026     */
027    public class ShoppingCategoryWrapper implements ShoppingCategory {
028            public ShoppingCategoryWrapper(ShoppingCategory shoppingCategory) {
029                    _shoppingCategory = shoppingCategory;
030            }
031    
032            public long getPrimaryKey() {
033                    return _shoppingCategory.getPrimaryKey();
034            }
035    
036            public void setPrimaryKey(long pk) {
037                    _shoppingCategory.setPrimaryKey(pk);
038            }
039    
040            public long getCategoryId() {
041                    return _shoppingCategory.getCategoryId();
042            }
043    
044            public void setCategoryId(long categoryId) {
045                    _shoppingCategory.setCategoryId(categoryId);
046            }
047    
048            public long getGroupId() {
049                    return _shoppingCategory.getGroupId();
050            }
051    
052            public void setGroupId(long groupId) {
053                    _shoppingCategory.setGroupId(groupId);
054            }
055    
056            public long getCompanyId() {
057                    return _shoppingCategory.getCompanyId();
058            }
059    
060            public void setCompanyId(long companyId) {
061                    _shoppingCategory.setCompanyId(companyId);
062            }
063    
064            public long getUserId() {
065                    return _shoppingCategory.getUserId();
066            }
067    
068            public void setUserId(long userId) {
069                    _shoppingCategory.setUserId(userId);
070            }
071    
072            public java.lang.String getUserUuid()
073                    throws com.liferay.portal.kernel.exception.SystemException {
074                    return _shoppingCategory.getUserUuid();
075            }
076    
077            public void setUserUuid(java.lang.String userUuid) {
078                    _shoppingCategory.setUserUuid(userUuid);
079            }
080    
081            public java.lang.String getUserName() {
082                    return _shoppingCategory.getUserName();
083            }
084    
085            public void setUserName(java.lang.String userName) {
086                    _shoppingCategory.setUserName(userName);
087            }
088    
089            public java.util.Date getCreateDate() {
090                    return _shoppingCategory.getCreateDate();
091            }
092    
093            public void setCreateDate(java.util.Date createDate) {
094                    _shoppingCategory.setCreateDate(createDate);
095            }
096    
097            public java.util.Date getModifiedDate() {
098                    return _shoppingCategory.getModifiedDate();
099            }
100    
101            public void setModifiedDate(java.util.Date modifiedDate) {
102                    _shoppingCategory.setModifiedDate(modifiedDate);
103            }
104    
105            public long getParentCategoryId() {
106                    return _shoppingCategory.getParentCategoryId();
107            }
108    
109            public void setParentCategoryId(long parentCategoryId) {
110                    _shoppingCategory.setParentCategoryId(parentCategoryId);
111            }
112    
113            public java.lang.String getName() {
114                    return _shoppingCategory.getName();
115            }
116    
117            public void setName(java.lang.String name) {
118                    _shoppingCategory.setName(name);
119            }
120    
121            public java.lang.String getDescription() {
122                    return _shoppingCategory.getDescription();
123            }
124    
125            public void setDescription(java.lang.String description) {
126                    _shoppingCategory.setDescription(description);
127            }
128    
129            public com.liferay.portlet.shopping.model.ShoppingCategory toEscapedModel() {
130                    return _shoppingCategory.toEscapedModel();
131            }
132    
133            public boolean isNew() {
134                    return _shoppingCategory.isNew();
135            }
136    
137            public void setNew(boolean n) {
138                    _shoppingCategory.setNew(n);
139            }
140    
141            public boolean isCachedModel() {
142                    return _shoppingCategory.isCachedModel();
143            }
144    
145            public void setCachedModel(boolean cachedModel) {
146                    _shoppingCategory.setCachedModel(cachedModel);
147            }
148    
149            public boolean isEscapedModel() {
150                    return _shoppingCategory.isEscapedModel();
151            }
152    
153            public void setEscapedModel(boolean escapedModel) {
154                    _shoppingCategory.setEscapedModel(escapedModel);
155            }
156    
157            public java.io.Serializable getPrimaryKeyObj() {
158                    return _shoppingCategory.getPrimaryKeyObj();
159            }
160    
161            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
162                    return _shoppingCategory.getExpandoBridge();
163            }
164    
165            public void setExpandoBridgeAttributes(
166                    com.liferay.portal.service.ServiceContext serviceContext) {
167                    _shoppingCategory.setExpandoBridgeAttributes(serviceContext);
168            }
169    
170            public java.lang.Object clone() {
171                    return _shoppingCategory.clone();
172            }
173    
174            public int compareTo(
175                    com.liferay.portlet.shopping.model.ShoppingCategory shoppingCategory) {
176                    return _shoppingCategory.compareTo(shoppingCategory);
177            }
178    
179            public int hashCode() {
180                    return _shoppingCategory.hashCode();
181            }
182    
183            public java.lang.String toString() {
184                    return _shoppingCategory.toString();
185            }
186    
187            public java.lang.String toXmlString() {
188                    return _shoppingCategory.toXmlString();
189            }
190    
191            public boolean isRoot() {
192                    return _shoppingCategory.isRoot();
193            }
194    
195            public ShoppingCategory getWrappedShoppingCategory() {
196                    return _shoppingCategory;
197            }
198    
199            private ShoppingCategory _shoppingCategory;
200    }