001
014
015 package com.liferay.portal.model;
016
017
026 public class LayoutSetWrapper implements LayoutSet, ModelWrapper<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 java.util.Date getCreateDate() {
117 return _layoutSet.getCreateDate();
118 }
119
120
125 public void setCreateDate(java.util.Date createDate) {
126 _layoutSet.setCreateDate(createDate);
127 }
128
129
134 public java.util.Date getModifiedDate() {
135 return _layoutSet.getModifiedDate();
136 }
137
138
143 public void setModifiedDate(java.util.Date modifiedDate) {
144 _layoutSet.setModifiedDate(modifiedDate);
145 }
146
147
152 public boolean getPrivateLayout() {
153 return _layoutSet.getPrivateLayout();
154 }
155
156
161 public boolean isPrivateLayout() {
162 return _layoutSet.isPrivateLayout();
163 }
164
165
170 public void setPrivateLayout(boolean privateLayout) {
171 _layoutSet.setPrivateLayout(privateLayout);
172 }
173
174
179 public boolean getLogo() {
180 return _layoutSet.getLogo();
181 }
182
183
188 public boolean isLogo() {
189 return _layoutSet.isLogo();
190 }
191
192
197 public void setLogo(boolean logo) {
198 _layoutSet.setLogo(logo);
199 }
200
201
206 public long getLogoId() {
207 return _layoutSet.getLogoId();
208 }
209
210
215 public void setLogoId(long logoId) {
216 _layoutSet.setLogoId(logoId);
217 }
218
219
224 public java.lang.String getThemeId() {
225 return _layoutSet.getThemeId();
226 }
227
228
233 public void setThemeId(java.lang.String themeId) {
234 _layoutSet.setThemeId(themeId);
235 }
236
237
242 public java.lang.String getColorSchemeId() {
243 return _layoutSet.getColorSchemeId();
244 }
245
246
251 public void setColorSchemeId(java.lang.String colorSchemeId) {
252 _layoutSet.setColorSchemeId(colorSchemeId);
253 }
254
255
260 public java.lang.String getWapThemeId() {
261 return _layoutSet.getWapThemeId();
262 }
263
264
269 public void setWapThemeId(java.lang.String wapThemeId) {
270 _layoutSet.setWapThemeId(wapThemeId);
271 }
272
273
278 public java.lang.String getWapColorSchemeId() {
279 return _layoutSet.getWapColorSchemeId();
280 }
281
282
287 public void setWapColorSchemeId(java.lang.String wapColorSchemeId) {
288 _layoutSet.setWapColorSchemeId(wapColorSchemeId);
289 }
290
291
296 public java.lang.String getCss() {
297 return _layoutSet.getCss();
298 }
299
300
305 public void setCss(java.lang.String css) {
306 _layoutSet.setCss(css);
307 }
308
309
314 public int getPageCount() {
315 return _layoutSet.getPageCount();
316 }
317
318
323 public void setPageCount(int pageCount) {
324 _layoutSet.setPageCount(pageCount);
325 }
326
327
332 public java.lang.String getSettings() {
333 return _layoutSet.getSettings();
334 }
335
336
341 public void setSettings(java.lang.String settings) {
342 _layoutSet.setSettings(settings);
343 }
344
345
350 public java.lang.String getLayoutSetPrototypeUuid() {
351 return _layoutSet.getLayoutSetPrototypeUuid();
352 }
353
354
359 public void setLayoutSetPrototypeUuid(
360 java.lang.String layoutSetPrototypeUuid) {
361 _layoutSet.setLayoutSetPrototypeUuid(layoutSetPrototypeUuid);
362 }
363
364
369 public boolean getLayoutSetPrototypeLinkEnabled() {
370 return _layoutSet.getLayoutSetPrototypeLinkEnabled();
371 }
372
373
378 public boolean isLayoutSetPrototypeLinkEnabled() {
379 return _layoutSet.isLayoutSetPrototypeLinkEnabled();
380 }
381
382
387 public void setLayoutSetPrototypeLinkEnabled(
388 boolean layoutSetPrototypeLinkEnabled) {
389 _layoutSet.setLayoutSetPrototypeLinkEnabled(layoutSetPrototypeLinkEnabled);
390 }
391
392 public boolean isNew() {
393 return _layoutSet.isNew();
394 }
395
396 public void setNew(boolean n) {
397 _layoutSet.setNew(n);
398 }
399
400 public boolean isCachedModel() {
401 return _layoutSet.isCachedModel();
402 }
403
404 public void setCachedModel(boolean cachedModel) {
405 _layoutSet.setCachedModel(cachedModel);
406 }
407
408 public boolean isEscapedModel() {
409 return _layoutSet.isEscapedModel();
410 }
411
412 public java.io.Serializable getPrimaryKeyObj() {
413 return _layoutSet.getPrimaryKeyObj();
414 }
415
416 public void setPrimaryKeyObj(java.io.Serializable primaryKeyObj) {
417 _layoutSet.setPrimaryKeyObj(primaryKeyObj);
418 }
419
420 public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
421 return _layoutSet.getExpandoBridge();
422 }
423
424 public void setExpandoBridgeAttributes(
425 com.liferay.portal.service.ServiceContext serviceContext) {
426 _layoutSet.setExpandoBridgeAttributes(serviceContext);
427 }
428
429 @Override
430 public java.lang.Object clone() {
431 return new LayoutSetWrapper((LayoutSet)_layoutSet.clone());
432 }
433
434 public int compareTo(com.liferay.portal.model.LayoutSet layoutSet) {
435 return _layoutSet.compareTo(layoutSet);
436 }
437
438 @Override
439 public int hashCode() {
440 return _layoutSet.hashCode();
441 }
442
443 public com.liferay.portal.model.CacheModel<com.liferay.portal.model.LayoutSet> toCacheModel() {
444 return _layoutSet.toCacheModel();
445 }
446
447 public com.liferay.portal.model.LayoutSet toEscapedModel() {
448 return new LayoutSetWrapper(_layoutSet.toEscapedModel());
449 }
450
451 @Override
452 public java.lang.String toString() {
453 return _layoutSet.toString();
454 }
455
456 public java.lang.String toXmlString() {
457 return _layoutSet.toXmlString();
458 }
459
460 public void persist()
461 throws com.liferay.portal.kernel.exception.SystemException {
462 _layoutSet.persist();
463 }
464
465 public com.liferay.portal.model.ColorScheme getColorScheme()
466 throws com.liferay.portal.kernel.exception.SystemException {
467 return _layoutSet.getColorScheme();
468 }
469
470 public com.liferay.portal.model.Group getGroup()
471 throws com.liferay.portal.kernel.exception.PortalException,
472 com.liferay.portal.kernel.exception.SystemException {
473 return _layoutSet.getGroup();
474 }
475
476 public long getLiveLogoId() {
477 return _layoutSet.getLiveLogoId();
478 }
479
480 public com.liferay.portal.kernel.util.UnicodeProperties getSettingsProperties() {
481 return _layoutSet.getSettingsProperties();
482 }
483
484 public java.lang.String getSettingsProperty(java.lang.String key) {
485 return _layoutSet.getSettingsProperty(key);
486 }
487
488 public com.liferay.portal.model.Theme getTheme()
489 throws com.liferay.portal.kernel.exception.SystemException {
490 return _layoutSet.getTheme();
491 }
492
493 public java.lang.String getThemeSetting(java.lang.String key,
494 java.lang.String device)
495 throws com.liferay.portal.kernel.exception.SystemException {
496 return _layoutSet.getThemeSetting(key, device);
497 }
498
499 public java.lang.String getVirtualHostname() {
500 return _layoutSet.getVirtualHostname();
501 }
502
503 public com.liferay.portal.model.ColorScheme getWapColorScheme()
504 throws com.liferay.portal.kernel.exception.SystemException {
505 return _layoutSet.getWapColorScheme();
506 }
507
508 public com.liferay.portal.model.Theme getWapTheme()
509 throws com.liferay.portal.kernel.exception.SystemException {
510 return _layoutSet.getWapTheme();
511 }
512
513 public boolean isLayoutSetPrototypeLinkActive() {
514 return _layoutSet.isLayoutSetPrototypeLinkActive();
515 }
516
517 public void setSettingsProperties(
518 com.liferay.portal.kernel.util.UnicodeProperties settingsProperties) {
519 _layoutSet.setSettingsProperties(settingsProperties);
520 }
521
522
525 public LayoutSet getWrappedLayoutSet() {
526 return _layoutSet;
527 }
528
529 public LayoutSet getWrappedModel() {
530 return _layoutSet;
531 }
532
533 public void resetOriginalValues() {
534 _layoutSet.resetOriginalValues();
535 }
536
537 private LayoutSet _layoutSet;
538 }