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.portal.model;
016    
017    
018    /**
019     * <p>
020     * This class is a wrapper for {@link LayoutSet}.
021     * </p>
022     *
023     * @author    Brian Wing Shun Chan
024     * @see       LayoutSet
025     * @generated
026     */
027    public class LayoutSetWrapper implements LayoutSet {
028            public LayoutSetWrapper(LayoutSet layoutSet) {
029                    _layoutSet = layoutSet;
030            }
031    
032            public long getPrimaryKey() {
033                    return _layoutSet.getPrimaryKey();
034            }
035    
036            public void setPrimaryKey(long pk) {
037                    _layoutSet.setPrimaryKey(pk);
038            }
039    
040            public long getLayoutSetId() {
041                    return _layoutSet.getLayoutSetId();
042            }
043    
044            public void setLayoutSetId(long layoutSetId) {
045                    _layoutSet.setLayoutSetId(layoutSetId);
046            }
047    
048            public long getGroupId() {
049                    return _layoutSet.getGroupId();
050            }
051    
052            public void setGroupId(long groupId) {
053                    _layoutSet.setGroupId(groupId);
054            }
055    
056            public long getCompanyId() {
057                    return _layoutSet.getCompanyId();
058            }
059    
060            public void setCompanyId(long companyId) {
061                    _layoutSet.setCompanyId(companyId);
062            }
063    
064            public boolean getPrivateLayout() {
065                    return _layoutSet.getPrivateLayout();
066            }
067    
068            public boolean isPrivateLayout() {
069                    return _layoutSet.isPrivateLayout();
070            }
071    
072            public void setPrivateLayout(boolean privateLayout) {
073                    _layoutSet.setPrivateLayout(privateLayout);
074            }
075    
076            public boolean getLogo() {
077                    return _layoutSet.getLogo();
078            }
079    
080            public boolean isLogo() {
081                    return _layoutSet.isLogo();
082            }
083    
084            public void setLogo(boolean logo) {
085                    _layoutSet.setLogo(logo);
086            }
087    
088            public long getLogoId() {
089                    return _layoutSet.getLogoId();
090            }
091    
092            public void setLogoId(long logoId) {
093                    _layoutSet.setLogoId(logoId);
094            }
095    
096            public java.lang.String getThemeId() {
097                    return _layoutSet.getThemeId();
098            }
099    
100            public void setThemeId(java.lang.String themeId) {
101                    _layoutSet.setThemeId(themeId);
102            }
103    
104            public java.lang.String getColorSchemeId() {
105                    return _layoutSet.getColorSchemeId();
106            }
107    
108            public void setColorSchemeId(java.lang.String colorSchemeId) {
109                    _layoutSet.setColorSchemeId(colorSchemeId);
110            }
111    
112            public java.lang.String getWapThemeId() {
113                    return _layoutSet.getWapThemeId();
114            }
115    
116            public void setWapThemeId(java.lang.String wapThemeId) {
117                    _layoutSet.setWapThemeId(wapThemeId);
118            }
119    
120            public java.lang.String getWapColorSchemeId() {
121                    return _layoutSet.getWapColorSchemeId();
122            }
123    
124            public void setWapColorSchemeId(java.lang.String wapColorSchemeId) {
125                    _layoutSet.setWapColorSchemeId(wapColorSchemeId);
126            }
127    
128            public java.lang.String getCss() {
129                    return _layoutSet.getCss();
130            }
131    
132            public void setCss(java.lang.String css) {
133                    _layoutSet.setCss(css);
134            }
135    
136            public int getPageCount() {
137                    return _layoutSet.getPageCount();
138            }
139    
140            public void setPageCount(int pageCount) {
141                    _layoutSet.setPageCount(pageCount);
142            }
143    
144            public java.lang.String getVirtualHost() {
145                    return _layoutSet.getVirtualHost();
146            }
147    
148            public void setVirtualHost(java.lang.String virtualHost) {
149                    _layoutSet.setVirtualHost(virtualHost);
150            }
151    
152            public java.lang.String getSettings() {
153                    return _layoutSet.getSettings();
154            }
155    
156            public void setSettings(java.lang.String settings) {
157                    _layoutSet.setSettings(settings);
158            }
159    
160            public long getLayoutSetPrototypeId() {
161                    return _layoutSet.getLayoutSetPrototypeId();
162            }
163    
164            public void setLayoutSetPrototypeId(long layoutSetPrototypeId) {
165                    _layoutSet.setLayoutSetPrototypeId(layoutSetPrototypeId);
166            }
167    
168            public com.liferay.portal.model.LayoutSet toEscapedModel() {
169                    return _layoutSet.toEscapedModel();
170            }
171    
172            public boolean isNew() {
173                    return _layoutSet.isNew();
174            }
175    
176            public void setNew(boolean n) {
177                    _layoutSet.setNew(n);
178            }
179    
180            public boolean isCachedModel() {
181                    return _layoutSet.isCachedModel();
182            }
183    
184            public void setCachedModel(boolean cachedModel) {
185                    _layoutSet.setCachedModel(cachedModel);
186            }
187    
188            public boolean isEscapedModel() {
189                    return _layoutSet.isEscapedModel();
190            }
191    
192            public void setEscapedModel(boolean escapedModel) {
193                    _layoutSet.setEscapedModel(escapedModel);
194            }
195    
196            public java.io.Serializable getPrimaryKeyObj() {
197                    return _layoutSet.getPrimaryKeyObj();
198            }
199    
200            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
201                    return _layoutSet.getExpandoBridge();
202            }
203    
204            public void setExpandoBridgeAttributes(
205                    com.liferay.portal.service.ServiceContext serviceContext) {
206                    _layoutSet.setExpandoBridgeAttributes(serviceContext);
207            }
208    
209            public java.lang.Object clone() {
210                    return _layoutSet.clone();
211            }
212    
213            public int compareTo(com.liferay.portal.model.LayoutSet layoutSet) {
214                    return _layoutSet.compareTo(layoutSet);
215            }
216    
217            public int hashCode() {
218                    return _layoutSet.hashCode();
219            }
220    
221            public java.lang.String toString() {
222                    return _layoutSet.toString();
223            }
224    
225            public java.lang.String toXmlString() {
226                    return _layoutSet.toXmlString();
227            }
228    
229            public com.liferay.portal.model.Theme getTheme()
230                    throws com.liferay.portal.kernel.exception.SystemException {
231                    return _layoutSet.getTheme();
232            }
233    
234            public com.liferay.portal.model.ColorScheme getColorScheme()
235                    throws com.liferay.portal.kernel.exception.SystemException {
236                    return _layoutSet.getColorScheme();
237            }
238    
239            public com.liferay.portal.model.Group getGroup()
240                    throws com.liferay.portal.kernel.exception.PortalException,
241                            com.liferay.portal.kernel.exception.SystemException {
242                    return _layoutSet.getGroup();
243            }
244    
245            public com.liferay.portal.kernel.util.UnicodeProperties getSettingsProperties() {
246                    return _layoutSet.getSettingsProperties();
247            }
248    
249            public java.lang.String getSettingsProperty(java.lang.String key) {
250                    return _layoutSet.getSettingsProperty(key);
251            }
252    
253            public com.liferay.portal.model.Theme getWapTheme()
254                    throws com.liferay.portal.kernel.exception.SystemException {
255                    return _layoutSet.getWapTheme();
256            }
257    
258            public com.liferay.portal.model.ColorScheme getWapColorScheme()
259                    throws com.liferay.portal.kernel.exception.SystemException {
260                    return _layoutSet.getWapColorScheme();
261            }
262    
263            public void setSettingsProperties(
264                    com.liferay.portal.kernel.util.UnicodeProperties settingsProperties) {
265                    _layoutSet.setSettingsProperties(settingsProperties);
266            }
267    
268            public LayoutSet getWrappedLayoutSet() {
269                    return _layoutSet;
270            }
271    
272            private LayoutSet _layoutSet;
273    }