1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * This library is free software; you can redistribute it and/or modify it under
5    * the terms of the GNU Lesser General Public License as published by the Free
6    * Software Foundation; either version 2.1 of the License, or (at your option)
7    * any later version.
8    *
9    * This library is distributed in the hope that it will be useful, but WITHOUT
10   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11   * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
12   * details.
13   */
14  
15  package com.liferay.portal.model;
16  
17  
18  /**
19   * <a href="LayoutSetSoap.java.html"><b><i>View Source</i></b></a>
20   *
21   * <p>
22   * ServiceBuilder generated this class. Modifications in this class will be
23   * overwritten the next time is generated.
24   * </p>
25   *
26   * <p>
27   * This class is a wrapper for {@link LayoutSet}.
28   * </p>
29   *
30   * @author    Brian Wing Shun Chan
31   * @see       LayoutSet
32   * @generated
33   */
34  public class LayoutSetWrapper implements LayoutSet {
35      public LayoutSetWrapper(LayoutSet layoutSet) {
36          _layoutSet = layoutSet;
37      }
38  
39      public long getPrimaryKey() {
40          return _layoutSet.getPrimaryKey();
41      }
42  
43      public void setPrimaryKey(long pk) {
44          _layoutSet.setPrimaryKey(pk);
45      }
46  
47      public long getLayoutSetId() {
48          return _layoutSet.getLayoutSetId();
49      }
50  
51      public void setLayoutSetId(long layoutSetId) {
52          _layoutSet.setLayoutSetId(layoutSetId);
53      }
54  
55      public long getGroupId() {
56          return _layoutSet.getGroupId();
57      }
58  
59      public void setGroupId(long groupId) {
60          _layoutSet.setGroupId(groupId);
61      }
62  
63      public long getCompanyId() {
64          return _layoutSet.getCompanyId();
65      }
66  
67      public void setCompanyId(long companyId) {
68          _layoutSet.setCompanyId(companyId);
69      }
70  
71      public boolean getPrivateLayout() {
72          return _layoutSet.getPrivateLayout();
73      }
74  
75      public boolean isPrivateLayout() {
76          return _layoutSet.isPrivateLayout();
77      }
78  
79      public void setPrivateLayout(boolean privateLayout) {
80          _layoutSet.setPrivateLayout(privateLayout);
81      }
82  
83      public boolean getLogo() {
84          return _layoutSet.getLogo();
85      }
86  
87      public boolean isLogo() {
88          return _layoutSet.isLogo();
89      }
90  
91      public void setLogo(boolean logo) {
92          _layoutSet.setLogo(logo);
93      }
94  
95      public long getLogoId() {
96          return _layoutSet.getLogoId();
97      }
98  
99      public void setLogoId(long logoId) {
100         _layoutSet.setLogoId(logoId);
101     }
102 
103     public java.lang.String getThemeId() {
104         return _layoutSet.getThemeId();
105     }
106 
107     public void setThemeId(java.lang.String themeId) {
108         _layoutSet.setThemeId(themeId);
109     }
110 
111     public java.lang.String getColorSchemeId() {
112         return _layoutSet.getColorSchemeId();
113     }
114 
115     public void setColorSchemeId(java.lang.String colorSchemeId) {
116         _layoutSet.setColorSchemeId(colorSchemeId);
117     }
118 
119     public java.lang.String getWapThemeId() {
120         return _layoutSet.getWapThemeId();
121     }
122 
123     public void setWapThemeId(java.lang.String wapThemeId) {
124         _layoutSet.setWapThemeId(wapThemeId);
125     }
126 
127     public java.lang.String getWapColorSchemeId() {
128         return _layoutSet.getWapColorSchemeId();
129     }
130 
131     public void setWapColorSchemeId(java.lang.String wapColorSchemeId) {
132         _layoutSet.setWapColorSchemeId(wapColorSchemeId);
133     }
134 
135     public java.lang.String getCss() {
136         return _layoutSet.getCss();
137     }
138 
139     public void setCss(java.lang.String css) {
140         _layoutSet.setCss(css);
141     }
142 
143     public int getPageCount() {
144         return _layoutSet.getPageCount();
145     }
146 
147     public void setPageCount(int pageCount) {
148         _layoutSet.setPageCount(pageCount);
149     }
150 
151     public java.lang.String getVirtualHost() {
152         return _layoutSet.getVirtualHost();
153     }
154 
155     public void setVirtualHost(java.lang.String virtualHost) {
156         _layoutSet.setVirtualHost(virtualHost);
157     }
158 
159     public long getLayoutSetPrototypeId() {
160         return _layoutSet.getLayoutSetPrototypeId();
161     }
162 
163     public void setLayoutSetPrototypeId(long layoutSetPrototypeId) {
164         _layoutSet.setLayoutSetPrototypeId(layoutSetPrototypeId);
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.kernel.exception.SystemException {
230         return _layoutSet.getTheme();
231     }
232 
233     public com.liferay.portal.model.ColorScheme getColorScheme()
234         throws com.liferay.portal.kernel.exception.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.kernel.exception.SystemException {
244         return _layoutSet.getWapTheme();
245     }
246 
247     public com.liferay.portal.model.ColorScheme getWapColorScheme()
248         throws com.liferay.portal.kernel.exception.SystemException {
249         return _layoutSet.getWapColorScheme();
250     }
251 
252     public LayoutSet getWrappedLayoutSet() {
253         return _layoutSet;
254     }
255 
256     private LayoutSet _layoutSet;
257 }