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.social.model;
016    
017    /**
018     * <p>
019     * This class is a wrapper for {@link SocialEquityGroupSetting}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       SocialEquityGroupSetting
024     * @generated
025     */
026    public class SocialEquityGroupSettingWrapper implements SocialEquityGroupSetting {
027            public SocialEquityGroupSettingWrapper(
028                    SocialEquityGroupSetting socialEquityGroupSetting) {
029                    _socialEquityGroupSetting = socialEquityGroupSetting;
030            }
031    
032            public long getPrimaryKey() {
033                    return _socialEquityGroupSetting.getPrimaryKey();
034            }
035    
036            public void setPrimaryKey(long pk) {
037                    _socialEquityGroupSetting.setPrimaryKey(pk);
038            }
039    
040            public long getEquityGroupSettingId() {
041                    return _socialEquityGroupSetting.getEquityGroupSettingId();
042            }
043    
044            public void setEquityGroupSettingId(long equityGroupSettingId) {
045                    _socialEquityGroupSetting.setEquityGroupSettingId(equityGroupSettingId);
046            }
047    
048            public long getGroupId() {
049                    return _socialEquityGroupSetting.getGroupId();
050            }
051    
052            public void setGroupId(long groupId) {
053                    _socialEquityGroupSetting.setGroupId(groupId);
054            }
055    
056            public long getCompanyId() {
057                    return _socialEquityGroupSetting.getCompanyId();
058            }
059    
060            public void setCompanyId(long companyId) {
061                    _socialEquityGroupSetting.setCompanyId(companyId);
062            }
063    
064            public java.lang.String getClassName() {
065                    return _socialEquityGroupSetting.getClassName();
066            }
067    
068            public long getClassNameId() {
069                    return _socialEquityGroupSetting.getClassNameId();
070            }
071    
072            public void setClassNameId(long classNameId) {
073                    _socialEquityGroupSetting.setClassNameId(classNameId);
074            }
075    
076            public int getType() {
077                    return _socialEquityGroupSetting.getType();
078            }
079    
080            public void setType(int type) {
081                    _socialEquityGroupSetting.setType(type);
082            }
083    
084            public boolean getEnabled() {
085                    return _socialEquityGroupSetting.getEnabled();
086            }
087    
088            public boolean isEnabled() {
089                    return _socialEquityGroupSetting.isEnabled();
090            }
091    
092            public void setEnabled(boolean enabled) {
093                    _socialEquityGroupSetting.setEnabled(enabled);
094            }
095    
096            public com.liferay.portlet.social.model.SocialEquityGroupSetting toEscapedModel() {
097                    return _socialEquityGroupSetting.toEscapedModel();
098            }
099    
100            public boolean isNew() {
101                    return _socialEquityGroupSetting.isNew();
102            }
103    
104            public void setNew(boolean n) {
105                    _socialEquityGroupSetting.setNew(n);
106            }
107    
108            public boolean isCachedModel() {
109                    return _socialEquityGroupSetting.isCachedModel();
110            }
111    
112            public void setCachedModel(boolean cachedModel) {
113                    _socialEquityGroupSetting.setCachedModel(cachedModel);
114            }
115    
116            public boolean isEscapedModel() {
117                    return _socialEquityGroupSetting.isEscapedModel();
118            }
119    
120            public void setEscapedModel(boolean escapedModel) {
121                    _socialEquityGroupSetting.setEscapedModel(escapedModel);
122            }
123    
124            public java.io.Serializable getPrimaryKeyObj() {
125                    return _socialEquityGroupSetting.getPrimaryKeyObj();
126            }
127    
128            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
129                    return _socialEquityGroupSetting.getExpandoBridge();
130            }
131    
132            public void setExpandoBridgeAttributes(
133                    com.liferay.portal.service.ServiceContext serviceContext) {
134                    _socialEquityGroupSetting.setExpandoBridgeAttributes(serviceContext);
135            }
136    
137            public java.lang.Object clone() {
138                    return _socialEquityGroupSetting.clone();
139            }
140    
141            public int compareTo(
142                    com.liferay.portlet.social.model.SocialEquityGroupSetting socialEquityGroupSetting) {
143                    return _socialEquityGroupSetting.compareTo(socialEquityGroupSetting);
144            }
145    
146            public int hashCode() {
147                    return _socialEquityGroupSetting.hashCode();
148            }
149    
150            public java.lang.String toString() {
151                    return _socialEquityGroupSetting.toString();
152            }
153    
154            public java.lang.String toXmlString() {
155                    return _socialEquityGroupSetting.toXmlString();
156            }
157    
158            public SocialEquityGroupSetting getWrappedSocialEquityGroupSetting() {
159                    return _socialEquityGroupSetting;
160            }
161    
162            private SocialEquityGroupSetting _socialEquityGroupSetting;
163    }