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