1   /**
2    * Copyright (c) 2000-2009 Liferay, Inc. All rights reserved.
3    *
4    * Permission is hereby granted, free of charge, to any person obtaining a copy
5    * of this software and associated documentation files (the "Software"), to deal
6    * in the Software without restriction, including without limitation the rights
7    * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8    * copies of the Software, and to permit persons to whom the Software is
9    * furnished to do so, subject to the following conditions:
10   *
11   * The above copyright notice and this permission notice shall be included in
12   * all copies or substantial portions of the Software.
13   *
14   * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15   * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16   * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17   * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18   * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19   * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20   * SOFTWARE.
21   */
22  
23  package com.liferay.portal.model;
24  
25  
26  /**
27   * <a href="LayoutSetSoap.java.html"><b><i>View Source</i></b></a>
28   *
29   * <p>
30   * ServiceBuilder generated this class. Modifications in this class will be
31   * overwritten the next time is generated.
32   * </p>
33   *
34   * <p>
35   * This class is a wrapper for {@link LayoutSet}.
36   * </p>
37   *
38   * @author    Brian Wing Shun Chan
39   * @see       LayoutSet
40   * @generated
41   */
42  public class LayoutSetWrapper implements LayoutSet {
43      public LayoutSetWrapper(LayoutSet layoutSet) {
44          _layoutSet = layoutSet;
45      }
46  
47      public long getPrimaryKey() {
48          return _layoutSet.getPrimaryKey();
49      }
50  
51      public void setPrimaryKey(long pk) {
52          _layoutSet.setPrimaryKey(pk);
53      }
54  
55      public long getLayoutSetId() {
56          return _layoutSet.getLayoutSetId();
57      }
58  
59      public void setLayoutSetId(long layoutSetId) {
60          _layoutSet.setLayoutSetId(layoutSetId);
61      }
62  
63      public long getGroupId() {
64          return _layoutSet.getGroupId();
65      }
66  
67      public void setGroupId(long groupId) {
68          _layoutSet.setGroupId(groupId);
69      }
70  
71      public long getCompanyId() {
72          return _layoutSet.getCompanyId();
73      }
74  
75      public void setCompanyId(long companyId) {
76          _layoutSet.setCompanyId(companyId);
77      }
78  
79      public boolean getPrivateLayout() {
80          return _layoutSet.getPrivateLayout();
81      }
82  
83      public boolean isPrivateLayout() {
84          return _layoutSet.isPrivateLayout();
85      }
86  
87      public void setPrivateLayout(boolean privateLayout) {
88          _layoutSet.setPrivateLayout(privateLayout);
89      }
90  
91      public boolean getLogo() {
92          return _layoutSet.getLogo();
93      }
94  
95      public boolean isLogo() {
96          return _layoutSet.isLogo();
97      }
98  
99      public void setLogo(boolean logo) {
100         _layoutSet.setLogo(logo);
101     }
102 
103     public long getLogoId() {
104         return _layoutSet.getLogoId();
105     }
106 
107     public void setLogoId(long logoId) {
108         _layoutSet.setLogoId(logoId);
109     }
110 
111     public java.lang.String getThemeId() {
112         return _layoutSet.getThemeId();
113     }
114 
115     public void setThemeId(java.lang.String themeId) {
116         _layoutSet.setThemeId(themeId);
117     }
118 
119     public java.lang.String getColorSchemeId() {
120         return _layoutSet.getColorSchemeId();
121     }
122 
123     public void setColorSchemeId(java.lang.String colorSchemeId) {
124         _layoutSet.setColorSchemeId(colorSchemeId);
125     }
126 
127     public java.lang.String getWapThemeId() {
128         return _layoutSet.getWapThemeId();
129     }
130 
131     public void setWapThemeId(java.lang.String wapThemeId) {
132         _layoutSet.setWapThemeId(wapThemeId);
133     }
134 
135     public java.lang.String getWapColorSchemeId() {
136         return _layoutSet.getWapColorSchemeId();
137     }
138 
139     public void setWapColorSchemeId(java.lang.String wapColorSchemeId) {
140         _layoutSet.setWapColorSchemeId(wapColorSchemeId);
141     }
142 
143     public java.lang.String getCss() {
144         return _layoutSet.getCss();
145     }
146 
147     public void setCss(java.lang.String css) {
148         _layoutSet.setCss(css);
149     }
150 
151     public int getPageCount() {
152         return _layoutSet.getPageCount();
153     }
154 
155     public void setPageCount(int pageCount) {
156         _layoutSet.setPageCount(pageCount);
157     }
158 
159     public java.lang.String getVirtualHost() {
160         return _layoutSet.getVirtualHost();
161     }
162 
163     public void setVirtualHost(java.lang.String virtualHost) {
164         _layoutSet.setVirtualHost(virtualHost);
165     }
166 
167     public com.liferay.portal.model.LayoutSet toEscapedModel() {
168         return _layoutSet.toEscapedModel();
169     }
170 
171     public boolean isNew() {
172         return _layoutSet.isNew();
173     }
174 
175     public boolean setNew(boolean n) {
176         return _layoutSet.setNew(n);
177     }
178 
179     public boolean isCachedModel() {
180         return _layoutSet.isCachedModel();
181     }
182 
183     public void setCachedModel(boolean cachedModel) {
184         _layoutSet.setCachedModel(cachedModel);
185     }
186 
187     public boolean isEscapedModel() {
188         return _layoutSet.isEscapedModel();
189     }
190 
191     public void setEscapedModel(boolean escapedModel) {
192         _layoutSet.setEscapedModel(escapedModel);
193     }
194 
195     public java.io.Serializable getPrimaryKeyObj() {
196         return _layoutSet.getPrimaryKeyObj();
197     }
198 
199     public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
200         return _layoutSet.getExpandoBridge();
201     }
202 
203     public void setExpandoBridgeAttributes(
204         com.liferay.portal.service.ServiceContext serviceContext) {
205         _layoutSet.setExpandoBridgeAttributes(serviceContext);
206     }
207 
208     public java.lang.Object clone() {
209         return _layoutSet.clone();
210     }
211 
212     public int compareTo(com.liferay.portal.model.LayoutSet layoutSet) {
213         return _layoutSet.compareTo(layoutSet);
214     }
215 
216     public int hashCode() {
217         return _layoutSet.hashCode();
218     }
219 
220     public java.lang.String toString() {
221         return _layoutSet.toString();
222     }
223 
224     public java.lang.String toXmlString() {
225         return _layoutSet.toXmlString();
226     }
227 
228     public com.liferay.portal.model.Theme getTheme()
229         throws com.liferay.portal.SystemException {
230         return _layoutSet.getTheme();
231     }
232 
233     public com.liferay.portal.model.ColorScheme getColorScheme()
234         throws com.liferay.portal.SystemException {
235         return _layoutSet.getColorScheme();
236     }
237 
238     public com.liferay.portal.model.Group getGroup() {
239         return _layoutSet.getGroup();
240     }
241 
242     public com.liferay.portal.model.Theme getWapTheme()
243         throws com.liferay.portal.SystemException {
244         return _layoutSet.getWapTheme();
245     }
246 
247     public com.liferay.portal.model.ColorScheme getWapColorScheme()
248         throws com.liferay.portal.SystemException {
249         return _layoutSet.getWapColorScheme();
250     }
251 
252     public LayoutSet getWrappedLayoutSet() {
253         return _layoutSet;
254     }
255 
256     private LayoutSet _layoutSet;
257 }