001    /**
002     * Copyright (c) 2000-2011 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     * <p>
019     * This class is a wrapper for {@link ShoppingCategory}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       ShoppingCategory
024     * @generated
025     */
026    public class ShoppingCategoryWrapper implements ShoppingCategory {
027            public ShoppingCategoryWrapper(ShoppingCategory shoppingCategory) {
028                    _shoppingCategory = shoppingCategory;
029            }
030    
031            public long getPrimaryKey() {
032                    return _shoppingCategory.getPrimaryKey();
033            }
034    
035            public void setPrimaryKey(long pk) {
036                    _shoppingCategory.setPrimaryKey(pk);
037            }
038    
039            public long getCategoryId() {
040                    return _shoppingCategory.getCategoryId();
041            }
042    
043            public void setCategoryId(long categoryId) {
044                    _shoppingCategory.setCategoryId(categoryId);
045            }
046    
047            public long getGroupId() {
048                    return _shoppingCategory.getGroupId();
049            }
050    
051            public void setGroupId(long groupId) {
052                    _shoppingCategory.setGroupId(groupId);
053            }
054    
055            public long getCompanyId() {
056                    return _shoppingCategory.getCompanyId();
057            }
058    
059            public void setCompanyId(long companyId) {
060                    _shoppingCategory.setCompanyId(companyId);
061            }
062    
063            public long getUserId() {
064                    return _shoppingCategory.getUserId();
065            }
066    
067            public void setUserId(long userId) {
068                    _shoppingCategory.setUserId(userId);
069            }
070    
071            public java.lang.String getUserUuid()
072                    throws com.liferay.portal.kernel.exception.SystemException {
073                    return _shoppingCategory.getUserUuid();
074            }
075    
076            public void setUserUuid(java.lang.String userUuid) {
077                    _shoppingCategory.setUserUuid(userUuid);
078            }
079    
080            public java.lang.String getUserName() {
081                    return _shoppingCategory.getUserName();
082            }
083    
084            public void setUserName(java.lang.String userName) {
085                    _shoppingCategory.setUserName(userName);
086            }
087    
088            public java.util.Date getCreateDate() {
089                    return _shoppingCategory.getCreateDate();
090            }
091    
092            public void setCreateDate(java.util.Date createDate) {
093                    _shoppingCategory.setCreateDate(createDate);
094            }
095    
096            public java.util.Date getModifiedDate() {
097                    return _shoppingCategory.getModifiedDate();
098            }
099    
100            public void setModifiedDate(java.util.Date modifiedDate) {
101                    _shoppingCategory.setModifiedDate(modifiedDate);
102            }
103    
104            public long getParentCategoryId() {
105                    return _shoppingCategory.getParentCategoryId();
106            }
107    
108            public void setParentCategoryId(long parentCategoryId) {
109                    _shoppingCategory.setParentCategoryId(parentCategoryId);
110            }
111    
112            public java.lang.String getName() {
113                    return _shoppingCategory.getName();
114            }
115    
116            public void setName(java.lang.String name) {
117                    _shoppingCategory.setName(name);
118            }
119    
120            public java.lang.String getDescription() {
121                    return _shoppingCategory.getDescription();
122            }
123    
124            public void setDescription(java.lang.String description) {
125                    _shoppingCategory.setDescription(description);
126            }
127    
128            public com.liferay.portlet.shopping.model.ShoppingCategory toEscapedModel() {
129                    return _shoppingCategory.toEscapedModel();
130            }
131    
132            public boolean isNew() {
133                    return _shoppingCategory.isNew();
134            }
135    
136            public void setNew(boolean n) {
137                    _shoppingCategory.setNew(n);
138            }
139    
140            public boolean isCachedModel() {
141                    return _shoppingCategory.isCachedModel();
142            }
143    
144            public void setCachedModel(boolean cachedModel) {
145                    _shoppingCategory.setCachedModel(cachedModel);
146            }
147    
148            public boolean isEscapedModel() {
149                    return _shoppingCategory.isEscapedModel();
150            }
151    
152            public void setEscapedModel(boolean escapedModel) {
153                    _shoppingCategory.setEscapedModel(escapedModel);
154            }
155    
156            public java.io.Serializable getPrimaryKeyObj() {
157                    return _shoppingCategory.getPrimaryKeyObj();
158            }
159    
160            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
161                    return _shoppingCategory.getExpandoBridge();
162            }
163    
164            public void setExpandoBridgeAttributes(
165                    com.liferay.portal.service.ServiceContext serviceContext) {
166                    _shoppingCategory.setExpandoBridgeAttributes(serviceContext);
167            }
168    
169            public java.lang.Object clone() {
170                    return _shoppingCategory.clone();
171            }
172    
173            public int compareTo(
174                    com.liferay.portlet.shopping.model.ShoppingCategory shoppingCategory) {
175                    return _shoppingCategory.compareTo(shoppingCategory);
176            }
177    
178            public int hashCode() {
179                    return _shoppingCategory.hashCode();
180            }
181    
182            public java.lang.String toString() {
183                    return _shoppingCategory.toString();
184            }
185    
186            public java.lang.String toXmlString() {
187                    return _shoppingCategory.toXmlString();
188            }
189    
190            public boolean isRoot() {
191                    return _shoppingCategory.isRoot();
192            }
193    
194            public ShoppingCategory getWrappedShoppingCategory() {
195                    return _shoppingCategory;
196            }
197    
198            private ShoppingCategory _shoppingCategory;
199    }