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.asset.model;
016    
017    
018    /**
019     * <p>
020     * This class is a wrapper for {@link AssetTagStats}.
021     * </p>
022     *
023     * @author    Brian Wing Shun Chan
024     * @see       AssetTagStats
025     * @generated
026     */
027    public class AssetTagStatsWrapper implements AssetTagStats {
028            public AssetTagStatsWrapper(AssetTagStats assetTagStats) {
029                    _assetTagStats = assetTagStats;
030            }
031    
032            public long getPrimaryKey() {
033                    return _assetTagStats.getPrimaryKey();
034            }
035    
036            public void setPrimaryKey(long pk) {
037                    _assetTagStats.setPrimaryKey(pk);
038            }
039    
040            public long getTagStatsId() {
041                    return _assetTagStats.getTagStatsId();
042            }
043    
044            public void setTagStatsId(long tagStatsId) {
045                    _assetTagStats.setTagStatsId(tagStatsId);
046            }
047    
048            public long getTagId() {
049                    return _assetTagStats.getTagId();
050            }
051    
052            public void setTagId(long tagId) {
053                    _assetTagStats.setTagId(tagId);
054            }
055    
056            public java.lang.String getClassName() {
057                    return _assetTagStats.getClassName();
058            }
059    
060            public long getClassNameId() {
061                    return _assetTagStats.getClassNameId();
062            }
063    
064            public void setClassNameId(long classNameId) {
065                    _assetTagStats.setClassNameId(classNameId);
066            }
067    
068            public int getAssetCount() {
069                    return _assetTagStats.getAssetCount();
070            }
071    
072            public void setAssetCount(int assetCount) {
073                    _assetTagStats.setAssetCount(assetCount);
074            }
075    
076            public com.liferay.portlet.asset.model.AssetTagStats toEscapedModel() {
077                    return _assetTagStats.toEscapedModel();
078            }
079    
080            public boolean isNew() {
081                    return _assetTagStats.isNew();
082            }
083    
084            public void setNew(boolean n) {
085                    _assetTagStats.setNew(n);
086            }
087    
088            public boolean isCachedModel() {
089                    return _assetTagStats.isCachedModel();
090            }
091    
092            public void setCachedModel(boolean cachedModel) {
093                    _assetTagStats.setCachedModel(cachedModel);
094            }
095    
096            public boolean isEscapedModel() {
097                    return _assetTagStats.isEscapedModel();
098            }
099    
100            public void setEscapedModel(boolean escapedModel) {
101                    _assetTagStats.setEscapedModel(escapedModel);
102            }
103    
104            public java.io.Serializable getPrimaryKeyObj() {
105                    return _assetTagStats.getPrimaryKeyObj();
106            }
107    
108            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
109                    return _assetTagStats.getExpandoBridge();
110            }
111    
112            public void setExpandoBridgeAttributes(
113                    com.liferay.portal.service.ServiceContext serviceContext) {
114                    _assetTagStats.setExpandoBridgeAttributes(serviceContext);
115            }
116    
117            public java.lang.Object clone() {
118                    return _assetTagStats.clone();
119            }
120    
121            public int compareTo(
122                    com.liferay.portlet.asset.model.AssetTagStats assetTagStats) {
123                    return _assetTagStats.compareTo(assetTagStats);
124            }
125    
126            public int hashCode() {
127                    return _assetTagStats.hashCode();
128            }
129    
130            public java.lang.String toString() {
131                    return _assetTagStats.toString();
132            }
133    
134            public java.lang.String toXmlString() {
135                    return _assetTagStats.toXmlString();
136            }
137    
138            public AssetTagStats getWrappedAssetTagStats() {
139                    return _assetTagStats;
140            }
141    
142            private AssetTagStats _assetTagStats;
143    }