001
014
015 package com.liferay.portal.model;
016
017
026 public class LayoutSetWrapper implements LayoutSet {
027 public LayoutSetWrapper(LayoutSet layoutSet) {
028 _layoutSet = layoutSet;
029 }
030
031 public Class<?> getModelClass() {
032 return LayoutSet.class;
033 }
034
035 public String getModelClassName() {
036 return LayoutSet.class.getName();
037 }
038
039
044 public long getPrimaryKey() {
045 return _layoutSet.getPrimaryKey();
046 }
047
048
053 public void setPrimaryKey(long primaryKey) {
054 _layoutSet.setPrimaryKey(primaryKey);
055 }
056
057
062 public long getLayoutSetId() {
063 return _layoutSet.getLayoutSetId();
064 }
065
066
071 public void setLayoutSetId(long layoutSetId) {
072 _layoutSet.setLayoutSetId(layoutSetId);
073 }
074
075
080 public long getGroupId() {
081 return _layoutSet.getGroupId();
082 }
083
084
089 public void setGroupId(long groupId) {
090 _layoutSet.setGroupId(groupId);
091 }
092
093
098 public long getCompanyId() {
099 return _layoutSet.getCompanyId();
100 }
101
102
107 public void setCompanyId(long companyId) {
108 _layoutSet.setCompanyId(companyId);
109 }
110
111
116 public boolean getPrivateLayout() {
117 return _layoutSet.getPrivateLayout();
118 }
119
120
125 public boolean isPrivateLayout() {
126 return _layoutSet.isPrivateLayout();
127 }
128
129
134 public void setPrivateLayout(boolean privateLayout) {
135 _layoutSet.setPrivateLayout(privateLayout);
136 }
137
138
143 public boolean getLogo() {
144 return _layoutSet.getLogo();
145 }
146
147
152 public boolean isLogo() {
153 return _layoutSet.isLogo();
154 }
155
156
161 public void setLogo(boolean logo) {
162 _layoutSet.setLogo(logo);
163 }
164
165
170 public long getLogoId() {
171 return _layoutSet.getLogoId();
172 }
173
174
179 public void setLogoId(long logoId) {
180 _layoutSet.setLogoId(logoId);
181 }
182
183
188 public java.lang.String getThemeId() {
189 return _layoutSet.getThemeId();
190 }
191
192
197 public void setThemeId(java.lang.String themeId) {
198 _layoutSet.setThemeId(themeId);
199 }
200
201
206 public java.lang.String getColorSchemeId() {
207 return _layoutSet.getColorSchemeId();
208 }
209
210
215 public void setColorSchemeId(java.lang.String colorSchemeId) {
216 _layoutSet.setColorSchemeId(colorSchemeId);
217 }
218
219
224 public java.lang.String getWapThemeId() {
225 return _layoutSet.getWapThemeId();
226 }
227
228
233 public void setWapThemeId(java.lang.String wapThemeId) {
234 _layoutSet.setWapThemeId(wapThemeId);
235 }
236
237
242 public java.lang.String getWapColorSchemeId() {
243 return _layoutSet.getWapColorSchemeId();
244 }
245
246
251 public void setWapColorSchemeId(java.lang.String wapColorSchemeId) {
252 _layoutSet.setWapColorSchemeId(wapColorSchemeId);
253 }
254
255
260 public java.lang.String getCss() {
261 return _layoutSet.getCss();
262 }
263
264
269 public void setCss(java.lang.String css) {
270 _layoutSet.setCss(css);
271 }
272
273
278 public int getPageCount() {
279 return _layoutSet.getPageCount();
280 }
281
282
287 public void setPageCount(int pageCount) {
288 _layoutSet.setPageCount(pageCount);
289 }
290
291
296 public java.lang.String getSettings() {
297 return _layoutSet.getSettings();
298 }
299
300
305 public void setSettings(java.lang.String settings) {
306 _layoutSet.setSettings(settings);
307 }
308
309
314 public java.lang.String getLayoutSetPrototypeUuid() {
315 return _layoutSet.getLayoutSetPrototypeUuid();
316 }
317
318
323 public void setLayoutSetPrototypeUuid(
324 java.lang.String layoutSetPrototypeUuid) {
325 _layoutSet.setLayoutSetPrototypeUuid(layoutSetPrototypeUuid);
326 }
327
328
333 public boolean getLayoutSetPrototypeLinkEnabled() {
334 return _layoutSet.getLayoutSetPrototypeLinkEnabled();
335 }
336
337
342 public boolean isLayoutSetPrototypeLinkEnabled() {
343 return _layoutSet.isLayoutSetPrototypeLinkEnabled();
344 }
345
346
351 public void setLayoutSetPrototypeLinkEnabled(
352 boolean layoutSetPrototypeLinkEnabled) {
353 _layoutSet.setLayoutSetPrototypeLinkEnabled(layoutSetPrototypeLinkEnabled);
354 }
355
356 public boolean isNew() {
357 return _layoutSet.isNew();
358 }
359
360 public void setNew(boolean n) {
361 _layoutSet.setNew(n);
362 }
363
364 public boolean isCachedModel() {
365 return _layoutSet.isCachedModel();
366 }
367
368 public void setCachedModel(boolean cachedModel) {
369 _layoutSet.setCachedModel(cachedModel);
370 }
371
372 public boolean isEscapedModel() {
373 return _layoutSet.isEscapedModel();
374 }
375
376 public java.io.Serializable getPrimaryKeyObj() {
377 return _layoutSet.getPrimaryKeyObj();
378 }
379
380 public void setPrimaryKeyObj(java.io.Serializable primaryKeyObj) {
381 _layoutSet.setPrimaryKeyObj(primaryKeyObj);
382 }
383
384 public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
385 return _layoutSet.getExpandoBridge();
386 }
387
388 public void setExpandoBridgeAttributes(
389 com.liferay.portal.service.ServiceContext serviceContext) {
390 _layoutSet.setExpandoBridgeAttributes(serviceContext);
391 }
392
393 @Override
394 public java.lang.Object clone() {
395 return new LayoutSetWrapper((LayoutSet)_layoutSet.clone());
396 }
397
398 public int compareTo(com.liferay.portal.model.LayoutSet layoutSet) {
399 return _layoutSet.compareTo(layoutSet);
400 }
401
402 @Override
403 public int hashCode() {
404 return _layoutSet.hashCode();
405 }
406
407 public com.liferay.portal.model.CacheModel<com.liferay.portal.model.LayoutSet> toCacheModel() {
408 return _layoutSet.toCacheModel();
409 }
410
411 public com.liferay.portal.model.LayoutSet toEscapedModel() {
412 return new LayoutSetWrapper(_layoutSet.toEscapedModel());
413 }
414
415 @Override
416 public java.lang.String toString() {
417 return _layoutSet.toString();
418 }
419
420 public java.lang.String toXmlString() {
421 return _layoutSet.toXmlString();
422 }
423
424 public void persist()
425 throws com.liferay.portal.kernel.exception.SystemException {
426 _layoutSet.persist();
427 }
428
429 public com.liferay.portal.model.Theme getTheme()
430 throws com.liferay.portal.kernel.exception.SystemException {
431 return _layoutSet.getTheme();
432 }
433
434 public com.liferay.portal.model.ColorScheme getColorScheme()
435 throws com.liferay.portal.kernel.exception.SystemException {
436 return _layoutSet.getColorScheme();
437 }
438
439 public com.liferay.portal.model.Group getGroup()
440 throws com.liferay.portal.kernel.exception.PortalException,
441 com.liferay.portal.kernel.exception.SystemException {
442 return _layoutSet.getGroup();
443 }
444
445 public com.liferay.portal.kernel.util.UnicodeProperties getSettingsProperties() {
446 return _layoutSet.getSettingsProperties();
447 }
448
449 public java.lang.String getSettingsProperty(java.lang.String key) {
450 return _layoutSet.getSettingsProperty(key);
451 }
452
453 public java.lang.String getThemeSetting(java.lang.String key,
454 java.lang.String device)
455 throws com.liferay.portal.kernel.exception.SystemException {
456 return _layoutSet.getThemeSetting(key, device);
457 }
458
459 public java.lang.String getVirtualHostname() {
460 return _layoutSet.getVirtualHostname();
461 }
462
463 public com.liferay.portal.model.Theme getWapTheme()
464 throws com.liferay.portal.kernel.exception.SystemException {
465 return _layoutSet.getWapTheme();
466 }
467
468 public com.liferay.portal.model.ColorScheme getWapColorScheme()
469 throws com.liferay.portal.kernel.exception.SystemException {
470 return _layoutSet.getWapColorScheme();
471 }
472
473 public void setSettingsProperties(
474 com.liferay.portal.kernel.util.UnicodeProperties settingsProperties) {
475 _layoutSet.setSettingsProperties(settingsProperties);
476 }
477
478 public LayoutSet getWrappedLayoutSet() {
479 return _layoutSet;
480 }
481
482 public void resetOriginalValues() {
483 _layoutSet.resetOriginalValues();
484 }
485
486 private LayoutSet _layoutSet;
487 }