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 long getLayoutSetPrototypeId() {
315 return _layoutSet.getLayoutSetPrototypeId();
316 }
317
318
323 public void setLayoutSetPrototypeId(long layoutSetPrototypeId) {
324 _layoutSet.setLayoutSetPrototypeId(layoutSetPrototypeId);
325 }
326
327 public boolean isNew() {
328 return _layoutSet.isNew();
329 }
330
331 public void setNew(boolean n) {
332 _layoutSet.setNew(n);
333 }
334
335 public boolean isCachedModel() {
336 return _layoutSet.isCachedModel();
337 }
338
339 public void setCachedModel(boolean cachedModel) {
340 _layoutSet.setCachedModel(cachedModel);
341 }
342
343 public boolean isEscapedModel() {
344 return _layoutSet.isEscapedModel();
345 }
346
347 public void setEscapedModel(boolean escapedModel) {
348 _layoutSet.setEscapedModel(escapedModel);
349 }
350
351 public java.io.Serializable getPrimaryKeyObj() {
352 return _layoutSet.getPrimaryKeyObj();
353 }
354
355 public void setPrimaryKeyObj(java.io.Serializable primaryKeyObj) {
356 _layoutSet.setPrimaryKeyObj(primaryKeyObj);
357 }
358
359 public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
360 return _layoutSet.getExpandoBridge();
361 }
362
363 public void setExpandoBridgeAttributes(
364 com.liferay.portal.service.ServiceContext serviceContext) {
365 _layoutSet.setExpandoBridgeAttributes(serviceContext);
366 }
367
368 @Override
369 public java.lang.Object clone() {
370 return new LayoutSetWrapper((LayoutSet)_layoutSet.clone());
371 }
372
373 public int compareTo(com.liferay.portal.model.LayoutSet layoutSet) {
374 return _layoutSet.compareTo(layoutSet);
375 }
376
377 @Override
378 public int hashCode() {
379 return _layoutSet.hashCode();
380 }
381
382 public com.liferay.portal.model.CacheModel<com.liferay.portal.model.LayoutSet> toCacheModel() {
383 return _layoutSet.toCacheModel();
384 }
385
386 public com.liferay.portal.model.LayoutSet toEscapedModel() {
387 return new LayoutSetWrapper(_layoutSet.toEscapedModel());
388 }
389
390 @Override
391 public java.lang.String toString() {
392 return _layoutSet.toString();
393 }
394
395 public java.lang.String toXmlString() {
396 return _layoutSet.toXmlString();
397 }
398
399 public void persist()
400 throws com.liferay.portal.kernel.exception.SystemException {
401 _layoutSet.persist();
402 }
403
404 public com.liferay.portal.model.Theme getTheme()
405 throws com.liferay.portal.kernel.exception.SystemException {
406 return _layoutSet.getTheme();
407 }
408
409 public com.liferay.portal.model.ColorScheme getColorScheme()
410 throws com.liferay.portal.kernel.exception.SystemException {
411 return _layoutSet.getColorScheme();
412 }
413
414 public com.liferay.portal.model.Group getGroup()
415 throws com.liferay.portal.kernel.exception.PortalException,
416 com.liferay.portal.kernel.exception.SystemException {
417 return _layoutSet.getGroup();
418 }
419
420 public com.liferay.portal.kernel.util.UnicodeProperties getSettingsProperties() {
421 return _layoutSet.getSettingsProperties();
422 }
423
424 public java.lang.String getSettingsProperty(java.lang.String key) {
425 return _layoutSet.getSettingsProperty(key);
426 }
427
428
431 public java.lang.String getVirtualHost() {
432 return _layoutSet.getVirtualHost();
433 }
434
435 public java.lang.String getVirtualHostname() {
436 return _layoutSet.getVirtualHostname();
437 }
438
439 public com.liferay.portal.model.Theme getWapTheme()
440 throws com.liferay.portal.kernel.exception.SystemException {
441 return _layoutSet.getWapTheme();
442 }
443
444 public com.liferay.portal.model.ColorScheme getWapColorScheme()
445 throws com.liferay.portal.kernel.exception.SystemException {
446 return _layoutSet.getWapColorScheme();
447 }
448
449 public void setSettingsProperties(
450 com.liferay.portal.kernel.util.UnicodeProperties settingsProperties) {
451 _layoutSet.setSettingsProperties(settingsProperties);
452 }
453
454 public LayoutSet getWrappedLayoutSet() {
455 return _layoutSet;
456 }
457
458 public void resetOriginalValues() {
459 _layoutSet.resetOriginalValues();
460 }
461
462 private LayoutSet _layoutSet;
463 }