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