001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * The contents of this file are subject to the terms of the Liferay Enterprise
005     * Subscription License ("License"). You may not use this file except in
006     * compliance with the License. You can obtain a copy of the License by
007     * contacting Liferay, Inc. See the License for the specific language governing
008     * permissions and limitations under the License, including but not limited to
009     * distribution rights of the Software.
010     *
011     *
012     *
013     */
014    
015    package com.liferay.portlet.asset.model;
016    
017    /**
018     * <p>
019     * This class is a wrapper for {@link AssetTagStats}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       AssetTagStats
024     * @generated
025     */
026    public class AssetTagStatsWrapper implements AssetTagStats {
027            public AssetTagStatsWrapper(AssetTagStats assetTagStats) {
028                    _assetTagStats = assetTagStats;
029            }
030    
031            /**
032            * Gets the primary key of this asset tag stats.
033            *
034            * @return the primary key of this asset tag stats
035            */
036            public long getPrimaryKey() {
037                    return _assetTagStats.getPrimaryKey();
038            }
039    
040            /**
041            * Sets the primary key of this asset tag stats
042            *
043            * @param pk the primary key of this asset tag stats
044            */
045            public void setPrimaryKey(long pk) {
046                    _assetTagStats.setPrimaryKey(pk);
047            }
048    
049            /**
050            * Gets the tag stats id of this asset tag stats.
051            *
052            * @return the tag stats id of this asset tag stats
053            */
054            public long getTagStatsId() {
055                    return _assetTagStats.getTagStatsId();
056            }
057    
058            /**
059            * Sets the tag stats id of this asset tag stats.
060            *
061            * @param tagStatsId the tag stats id of this asset tag stats
062            */
063            public void setTagStatsId(long tagStatsId) {
064                    _assetTagStats.setTagStatsId(tagStatsId);
065            }
066    
067            /**
068            * Gets the tag id of this asset tag stats.
069            *
070            * @return the tag id of this asset tag stats
071            */
072            public long getTagId() {
073                    return _assetTagStats.getTagId();
074            }
075    
076            /**
077            * Sets the tag id of this asset tag stats.
078            *
079            * @param tagId the tag id of this asset tag stats
080            */
081            public void setTagId(long tagId) {
082                    _assetTagStats.setTagId(tagId);
083            }
084    
085            /**
086            * Gets the class name of the model instance this asset tag stats is polymorphically associated with.
087            *
088            * @return the class name of the model instance this asset tag stats is polymorphically associated with
089            */
090            public java.lang.String getClassName() {
091                    return _assetTagStats.getClassName();
092            }
093    
094            /**
095            * Gets the class name id of this asset tag stats.
096            *
097            * @return the class name id of this asset tag stats
098            */
099            public long getClassNameId() {
100                    return _assetTagStats.getClassNameId();
101            }
102    
103            /**
104            * Sets the class name id of this asset tag stats.
105            *
106            * @param classNameId the class name id of this asset tag stats
107            */
108            public void setClassNameId(long classNameId) {
109                    _assetTagStats.setClassNameId(classNameId);
110            }
111    
112            /**
113            * Gets the asset count of this asset tag stats.
114            *
115            * @return the asset count of this asset tag stats
116            */
117            public int getAssetCount() {
118                    return _assetTagStats.getAssetCount();
119            }
120    
121            /**
122            * Sets the asset count of this asset tag stats.
123            *
124            * @param assetCount the asset count of this asset tag stats
125            */
126            public void setAssetCount(int assetCount) {
127                    _assetTagStats.setAssetCount(assetCount);
128            }
129    
130            public boolean isNew() {
131                    return _assetTagStats.isNew();
132            }
133    
134            public void setNew(boolean n) {
135                    _assetTagStats.setNew(n);
136            }
137    
138            public boolean isCachedModel() {
139                    return _assetTagStats.isCachedModel();
140            }
141    
142            public void setCachedModel(boolean cachedModel) {
143                    _assetTagStats.setCachedModel(cachedModel);
144            }
145    
146            public boolean isEscapedModel() {
147                    return _assetTagStats.isEscapedModel();
148            }
149    
150            public void setEscapedModel(boolean escapedModel) {
151                    _assetTagStats.setEscapedModel(escapedModel);
152            }
153    
154            public java.io.Serializable getPrimaryKeyObj() {
155                    return _assetTagStats.getPrimaryKeyObj();
156            }
157    
158            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
159                    return _assetTagStats.getExpandoBridge();
160            }
161    
162            public void setExpandoBridgeAttributes(
163                    com.liferay.portal.service.ServiceContext serviceContext) {
164                    _assetTagStats.setExpandoBridgeAttributes(serviceContext);
165            }
166    
167            public java.lang.Object clone() {
168                    return _assetTagStats.clone();
169            }
170    
171            public int compareTo(
172                    com.liferay.portlet.asset.model.AssetTagStats assetTagStats) {
173                    return _assetTagStats.compareTo(assetTagStats);
174            }
175    
176            public int hashCode() {
177                    return _assetTagStats.hashCode();
178            }
179    
180            public com.liferay.portlet.asset.model.AssetTagStats toEscapedModel() {
181                    return _assetTagStats.toEscapedModel();
182            }
183    
184            public java.lang.String toString() {
185                    return _assetTagStats.toString();
186            }
187    
188            public java.lang.String toXmlString() {
189                    return _assetTagStats.toXmlString();
190            }
191    
192            public AssetTagStats getWrappedAssetTagStats() {
193                    return _assetTagStats;
194            }
195    
196            private AssetTagStats _assetTagStats;
197    }