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="LayoutSoap.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 Layout}.
36   * </p>
37   *
38   * @author    Brian Wing Shun Chan
39   * @see       Layout
40   * @generated
41   */
42  public class LayoutWrapper implements Layout {
43      public LayoutWrapper(Layout layout) {
44          _layout = layout;
45      }
46  
47      public long getPrimaryKey() {
48          return _layout.getPrimaryKey();
49      }
50  
51      public void setPrimaryKey(long pk) {
52          _layout.setPrimaryKey(pk);
53      }
54  
55      public long getPlid() {
56          return _layout.getPlid();
57      }
58  
59      public void setPlid(long plid) {
60          _layout.setPlid(plid);
61      }
62  
63      public long getGroupId() {
64          return _layout.getGroupId();
65      }
66  
67      public void setGroupId(long groupId) {
68          _layout.setGroupId(groupId);
69      }
70  
71      public long getCompanyId() {
72          return _layout.getCompanyId();
73      }
74  
75      public void setCompanyId(long companyId) {
76          _layout.setCompanyId(companyId);
77      }
78  
79      public boolean getPrivateLayout() {
80          return _layout.getPrivateLayout();
81      }
82  
83      public boolean isPrivateLayout() {
84          return _layout.isPrivateLayout();
85      }
86  
87      public void setPrivateLayout(boolean privateLayout) {
88          _layout.setPrivateLayout(privateLayout);
89      }
90  
91      public long getLayoutId() {
92          return _layout.getLayoutId();
93      }
94  
95      public void setLayoutId(long layoutId) {
96          _layout.setLayoutId(layoutId);
97      }
98  
99      public long getParentLayoutId() {
100         return _layout.getParentLayoutId();
101     }
102 
103     public void setParentLayoutId(long parentLayoutId) {
104         _layout.setParentLayoutId(parentLayoutId);
105     }
106 
107     public java.lang.String getName() {
108         return _layout.getName();
109     }
110 
111     public void setName(java.lang.String name) {
112         _layout.setName(name);
113     }
114 
115     public java.lang.String getTitle() {
116         return _layout.getTitle();
117     }
118 
119     public void setTitle(java.lang.String title) {
120         _layout.setTitle(title);
121     }
122 
123     public java.lang.String getDescription() {
124         return _layout.getDescription();
125     }
126 
127     public void setDescription(java.lang.String description) {
128         _layout.setDescription(description);
129     }
130 
131     public java.lang.String getType() {
132         return _layout.getType();
133     }
134 
135     public void setType(java.lang.String type) {
136         _layout.setType(type);
137     }
138 
139     public java.lang.String getTypeSettings() {
140         return _layout.getTypeSettings();
141     }
142 
143     public void setTypeSettings(java.lang.String typeSettings) {
144         _layout.setTypeSettings(typeSettings);
145     }
146 
147     public boolean getHidden() {
148         return _layout.getHidden();
149     }
150 
151     public boolean isHidden() {
152         return _layout.isHidden();
153     }
154 
155     public void setHidden(boolean hidden) {
156         _layout.setHidden(hidden);
157     }
158 
159     public java.lang.String getFriendlyURL() {
160         return _layout.getFriendlyURL();
161     }
162 
163     public void setFriendlyURL(java.lang.String friendlyURL) {
164         _layout.setFriendlyURL(friendlyURL);
165     }
166 
167     public boolean getIconImage() {
168         return _layout.getIconImage();
169     }
170 
171     public boolean isIconImage() {
172         return _layout.isIconImage();
173     }
174 
175     public void setIconImage(boolean iconImage) {
176         _layout.setIconImage(iconImage);
177     }
178 
179     public long getIconImageId() {
180         return _layout.getIconImageId();
181     }
182 
183     public void setIconImageId(long iconImageId) {
184         _layout.setIconImageId(iconImageId);
185     }
186 
187     public java.lang.String getThemeId() {
188         return _layout.getThemeId();
189     }
190 
191     public void setThemeId(java.lang.String themeId) {
192         _layout.setThemeId(themeId);
193     }
194 
195     public java.lang.String getColorSchemeId() {
196         return _layout.getColorSchemeId();
197     }
198 
199     public void setColorSchemeId(java.lang.String colorSchemeId) {
200         _layout.setColorSchemeId(colorSchemeId);
201     }
202 
203     public java.lang.String getWapThemeId() {
204         return _layout.getWapThemeId();
205     }
206 
207     public void setWapThemeId(java.lang.String wapThemeId) {
208         _layout.setWapThemeId(wapThemeId);
209     }
210 
211     public java.lang.String getWapColorSchemeId() {
212         return _layout.getWapColorSchemeId();
213     }
214 
215     public void setWapColorSchemeId(java.lang.String wapColorSchemeId) {
216         _layout.setWapColorSchemeId(wapColorSchemeId);
217     }
218 
219     public java.lang.String getCss() {
220         return _layout.getCss();
221     }
222 
223     public void setCss(java.lang.String css) {
224         _layout.setCss(css);
225     }
226 
227     public int getPriority() {
228         return _layout.getPriority();
229     }
230 
231     public void setPriority(int priority) {
232         _layout.setPriority(priority);
233     }
234 
235     public long getDlFolderId() {
236         return _layout.getDlFolderId();
237     }
238 
239     public void setDlFolderId(long dlFolderId) {
240         _layout.setDlFolderId(dlFolderId);
241     }
242 
243     public com.liferay.portal.model.Layout toEscapedModel() {
244         return _layout.toEscapedModel();
245     }
246 
247     public boolean isNew() {
248         return _layout.isNew();
249     }
250 
251     public boolean setNew(boolean n) {
252         return _layout.setNew(n);
253     }
254 
255     public boolean isCachedModel() {
256         return _layout.isCachedModel();
257     }
258 
259     public void setCachedModel(boolean cachedModel) {
260         _layout.setCachedModel(cachedModel);
261     }
262 
263     public boolean isEscapedModel() {
264         return _layout.isEscapedModel();
265     }
266 
267     public void setEscapedModel(boolean escapedModel) {
268         _layout.setEscapedModel(escapedModel);
269     }
270 
271     public java.io.Serializable getPrimaryKeyObj() {
272         return _layout.getPrimaryKeyObj();
273     }
274 
275     public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
276         return _layout.getExpandoBridge();
277     }
278 
279     public void setExpandoBridgeAttributes(
280         com.liferay.portal.service.ServiceContext serviceContext) {
281         _layout.setExpandoBridgeAttributes(serviceContext);
282     }
283 
284     public java.lang.Object clone() {
285         return _layout.clone();
286     }
287 
288     public int compareTo(com.liferay.portal.model.Layout layout) {
289         return _layout.compareTo(layout);
290     }
291 
292     public int hashCode() {
293         return _layout.hashCode();
294     }
295 
296     public java.lang.String toString() {
297         return _layout.toString();
298     }
299 
300     public java.lang.String toXmlString() {
301         return _layout.toXmlString();
302     }
303 
304     public com.liferay.portal.model.Group getGroup() {
305         return _layout.getGroup();
306     }
307 
308     public com.liferay.portal.model.Group getScopeGroup()
309         throws com.liferay.portal.PortalException,
310             com.liferay.portal.SystemException {
311         return _layout.getScopeGroup();
312     }
313 
314     public boolean hasScopeGroup()
315         throws com.liferay.portal.PortalException,
316             com.liferay.portal.SystemException {
317         return _layout.hasScopeGroup();
318     }
319 
320     public boolean isPublicLayout() {
321         return _layout.isPublicLayout();
322     }
323 
324     public long getAncestorPlid() {
325         return _layout.getAncestorPlid();
326     }
327 
328     public long getAncestorLayoutId() {
329         return _layout.getAncestorLayoutId();
330     }
331 
332     public java.util.List<com.liferay.portal.model.Layout> getAncestors()
333         throws com.liferay.portal.PortalException,
334             com.liferay.portal.SystemException {
335         return _layout.getAncestors();
336     }
337 
338     public boolean hasAncestor(long layoutId)
339         throws com.liferay.portal.PortalException,
340             com.liferay.portal.SystemException {
341         return _layout.hasAncestor(layoutId);
342     }
343 
344     public boolean isFirstParent() {
345         return _layout.isFirstParent();
346     }
347 
348     public boolean isFirstChild() {
349         return _layout.isFirstChild();
350     }
351 
352     public boolean isRootLayout() {
353         return _layout.isRootLayout();
354     }
355 
356     public java.util.List<com.liferay.portal.model.Layout> getChildren()
357         throws com.liferay.portal.SystemException {
358         return _layout.getChildren();
359     }
360 
361     public java.util.List<com.liferay.portal.model.Layout> getAllChildren()
362         throws com.liferay.portal.SystemException {
363         return _layout.getAllChildren();
364     }
365 
366     public java.util.List<com.liferay.portal.model.Layout> getChildren(
367         com.liferay.portal.security.permission.PermissionChecker permissionChecker)
368         throws com.liferay.portal.PortalException,
369             com.liferay.portal.SystemException {
370         return _layout.getChildren(permissionChecker);
371     }
372 
373     public java.lang.String getName(java.util.Locale locale) {
374         return _layout.getName(locale);
375     }
376 
377     public java.lang.String getName(java.lang.String localeLanguageId) {
378         return _layout.getName(localeLanguageId);
379     }
380 
381     public java.lang.String getName(java.util.Locale locale, boolean useDefault) {
382         return _layout.getName(locale, useDefault);
383     }
384 
385     public java.lang.String getName(java.lang.String localeLanguageId,
386         boolean useDefault) {
387         return _layout.getName(localeLanguageId, useDefault);
388     }
389 
390     public void setName(java.lang.String name, java.util.Locale locale) {
391         _layout.setName(name, locale);
392     }
393 
394     public java.lang.String getTitle(java.util.Locale locale) {
395         return _layout.getTitle(locale);
396     }
397 
398     public java.lang.String getTitle(java.lang.String localeLanguageId) {
399         return _layout.getTitle(localeLanguageId);
400     }
401 
402     public java.lang.String getTitle(java.util.Locale locale, boolean useDefault) {
403         return _layout.getTitle(locale, useDefault);
404     }
405 
406     public java.lang.String getTitle(java.lang.String localeLanguageId,
407         boolean useDefault) {
408         return _layout.getTitle(localeLanguageId, useDefault);
409     }
410 
411     public java.lang.String getHTMLTitle(java.util.Locale locale) {
412         return _layout.getHTMLTitle(locale);
413     }
414 
415     public java.lang.String getHTMLTitle(java.lang.String localeLanguageId) {
416         return _layout.getHTMLTitle(localeLanguageId);
417     }
418 
419     public void setTitle(java.lang.String title, java.util.Locale locale) {
420         _layout.setTitle(title, locale);
421     }
422 
423     public com.liferay.portal.model.LayoutType getLayoutType() {
424         return _layout.getLayoutType();
425     }
426 
427     public com.liferay.portal.kernel.util.UnicodeProperties getTypeSettingsProperties() {
428         return _layout.getTypeSettingsProperties();
429     }
430 
431     public void setTypeSettingsProperties(
432         com.liferay.portal.kernel.util.UnicodeProperties typeSettingsProperties) {
433         _layout.setTypeSettingsProperties(typeSettingsProperties);
434     }
435 
436     public com.liferay.portal.model.LayoutSet getLayoutSet() {
437         return _layout.getLayoutSet();
438     }
439 
440     public boolean isInheritLookAndFeel() {
441         return _layout.isInheritLookAndFeel();
442     }
443 
444     public com.liferay.portal.model.Theme getTheme()
445         throws com.liferay.portal.SystemException {
446         return _layout.getTheme();
447     }
448 
449     public com.liferay.portal.model.ColorScheme getColorScheme()
450         throws com.liferay.portal.SystemException {
451         return _layout.getColorScheme();
452     }
453 
454     public boolean isInheritWapLookAndFeel() {
455         return _layout.isInheritWapLookAndFeel();
456     }
457 
458     public com.liferay.portal.model.Theme getWapTheme()
459         throws com.liferay.portal.SystemException {
460         return _layout.getWapTheme();
461     }
462 
463     public com.liferay.portal.model.ColorScheme getWapColorScheme()
464         throws com.liferay.portal.SystemException {
465         return _layout.getWapColorScheme();
466     }
467 
468     public java.lang.String getCssText() {
469         return _layout.getCssText();
470     }
471 
472     public java.lang.String getRegularURL(
473         javax.servlet.http.HttpServletRequest request)
474         throws com.liferay.portal.SystemException {
475         return _layout.getRegularURL(request);
476     }
477 
478     public java.lang.String getResetMaxStateURL(
479         javax.servlet.http.HttpServletRequest request)
480         throws com.liferay.portal.SystemException {
481         return _layout.getResetMaxStateURL(request);
482     }
483 
484     public java.lang.String getResetLayoutURL(
485         javax.servlet.http.HttpServletRequest request)
486         throws com.liferay.portal.SystemException {
487         return _layout.getResetLayoutURL(request);
488     }
489 
490     public java.lang.String getTarget() {
491         return _layout.getTarget();
492     }
493 
494     public boolean isChildSelected(boolean selectable,
495         com.liferay.portal.model.Layout layout) {
496         return _layout.isChildSelected(selectable, layout);
497     }
498 
499     public boolean isSelected(boolean selectable,
500         com.liferay.portal.model.Layout layout, long ancestorPlid) {
501         return _layout.isSelected(selectable, layout, ancestorPlid);
502     }
503 
504     public Layout getWrappedLayout() {
505         return _layout;
506     }
507 
508     private Layout _layout;
509 }