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
036 public long getPrimaryKey() {
037 return _layoutSet.getPrimaryKey();
038 }
039
040
045 public void setPrimaryKey(long pk) {
046 _layoutSet.setPrimaryKey(pk);
047 }
048
049
054 public long getLayoutSetId() {
055 return _layoutSet.getLayoutSetId();
056 }
057
058
063 public void setLayoutSetId(long layoutSetId) {
064 _layoutSet.setLayoutSetId(layoutSetId);
065 }
066
067
072 public long getGroupId() {
073 return _layoutSet.getGroupId();
074 }
075
076
081 public void setGroupId(long groupId) {
082 _layoutSet.setGroupId(groupId);
083 }
084
085
090 public long getCompanyId() {
091 return _layoutSet.getCompanyId();
092 }
093
094
099 public void setCompanyId(long companyId) {
100 _layoutSet.setCompanyId(companyId);
101 }
102
103
108 public boolean getPrivateLayout() {
109 return _layoutSet.getPrivateLayout();
110 }
111
112
117 public boolean isPrivateLayout() {
118 return _layoutSet.isPrivateLayout();
119 }
120
121
126 public void setPrivateLayout(boolean privateLayout) {
127 _layoutSet.setPrivateLayout(privateLayout);
128 }
129
130
135 public boolean getLogo() {
136 return _layoutSet.getLogo();
137 }
138
139
144 public boolean isLogo() {
145 return _layoutSet.isLogo();
146 }
147
148
153 public void setLogo(boolean logo) {
154 _layoutSet.setLogo(logo);
155 }
156
157
162 public long getLogoId() {
163 return _layoutSet.getLogoId();
164 }
165
166
171 public void setLogoId(long logoId) {
172 _layoutSet.setLogoId(logoId);
173 }
174
175
180 public java.lang.String getThemeId() {
181 return _layoutSet.getThemeId();
182 }
183
184
189 public void setThemeId(java.lang.String themeId) {
190 _layoutSet.setThemeId(themeId);
191 }
192
193
198 public java.lang.String getColorSchemeId() {
199 return _layoutSet.getColorSchemeId();
200 }
201
202
207 public void setColorSchemeId(java.lang.String colorSchemeId) {
208 _layoutSet.setColorSchemeId(colorSchemeId);
209 }
210
211
216 public java.lang.String getWapThemeId() {
217 return _layoutSet.getWapThemeId();
218 }
219
220
225 public void setWapThemeId(java.lang.String wapThemeId) {
226 _layoutSet.setWapThemeId(wapThemeId);
227 }
228
229
234 public java.lang.String getWapColorSchemeId() {
235 return _layoutSet.getWapColorSchemeId();
236 }
237
238
243 public void setWapColorSchemeId(java.lang.String wapColorSchemeId) {
244 _layoutSet.setWapColorSchemeId(wapColorSchemeId);
245 }
246
247
252 public java.lang.String getCss() {
253 return _layoutSet.getCss();
254 }
255
256
261 public void setCss(java.lang.String css) {
262 _layoutSet.setCss(css);
263 }
264
265
270 public int getPageCount() {
271 return _layoutSet.getPageCount();
272 }
273
274
279 public void setPageCount(int pageCount) {
280 _layoutSet.setPageCount(pageCount);
281 }
282
283
288 public java.lang.String getVirtualHost() {
289 return _layoutSet.getVirtualHost();
290 }
291
292
297 public void setVirtualHost(java.lang.String virtualHost) {
298 _layoutSet.setVirtualHost(virtualHost);
299 }
300
301
306 public java.lang.String getSettings() {
307 return _layoutSet.getSettings();
308 }
309
310
315 public void setSettings(java.lang.String settings) {
316 _layoutSet.setSettings(settings);
317 }
318
319
324 public long getLayoutSetPrototypeId() {
325 return _layoutSet.getLayoutSetPrototypeId();
326 }
327
328
333 public void setLayoutSetPrototypeId(long layoutSetPrototypeId) {
334 _layoutSet.setLayoutSetPrototypeId(layoutSetPrototypeId);
335 }
336
337 public boolean isNew() {
338 return _layoutSet.isNew();
339 }
340
341 public void setNew(boolean n) {
342 _layoutSet.setNew(n);
343 }
344
345 public boolean isCachedModel() {
346 return _layoutSet.isCachedModel();
347 }
348
349 public void setCachedModel(boolean cachedModel) {
350 _layoutSet.setCachedModel(cachedModel);
351 }
352
353 public boolean isEscapedModel() {
354 return _layoutSet.isEscapedModel();
355 }
356
357 public void setEscapedModel(boolean escapedModel) {
358 _layoutSet.setEscapedModel(escapedModel);
359 }
360
361 public java.io.Serializable getPrimaryKeyObj() {
362 return _layoutSet.getPrimaryKeyObj();
363 }
364
365 public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
366 return _layoutSet.getExpandoBridge();
367 }
368
369 public void setExpandoBridgeAttributes(
370 com.liferay.portal.service.ServiceContext serviceContext) {
371 _layoutSet.setExpandoBridgeAttributes(serviceContext);
372 }
373
374 public java.lang.Object clone() {
375 return _layoutSet.clone();
376 }
377
378 public int compareTo(com.liferay.portal.model.LayoutSet layoutSet) {
379 return _layoutSet.compareTo(layoutSet);
380 }
381
382 public int hashCode() {
383 return _layoutSet.hashCode();
384 }
385
386 public com.liferay.portal.model.LayoutSet toEscapedModel() {
387 return _layoutSet.toEscapedModel();
388 }
389
390 public java.lang.String toString() {
391 return _layoutSet.toString();
392 }
393
394 public java.lang.String toXmlString() {
395 return _layoutSet.toXmlString();
396 }
397
398 public com.liferay.portal.model.Theme getTheme()
399 throws com.liferay.portal.kernel.exception.SystemException {
400 return _layoutSet.getTheme();
401 }
402
403 public com.liferay.portal.model.ColorScheme getColorScheme()
404 throws com.liferay.portal.kernel.exception.SystemException {
405 return _layoutSet.getColorScheme();
406 }
407
408 public com.liferay.portal.model.Group getGroup()
409 throws com.liferay.portal.kernel.exception.PortalException,
410 com.liferay.portal.kernel.exception.SystemException {
411 return _layoutSet.getGroup();
412 }
413
414 public com.liferay.portal.kernel.util.UnicodeProperties getSettingsProperties() {
415 return _layoutSet.getSettingsProperties();
416 }
417
418 public java.lang.String getSettingsProperty(java.lang.String key) {
419 return _layoutSet.getSettingsProperty(key);
420 }
421
422 public com.liferay.portal.model.Theme getWapTheme()
423 throws com.liferay.portal.kernel.exception.SystemException {
424 return _layoutSet.getWapTheme();
425 }
426
427 public com.liferay.portal.model.ColorScheme getWapColorScheme()
428 throws com.liferay.portal.kernel.exception.SystemException {
429 return _layoutSet.getWapColorScheme();
430 }
431
432 public void setSettingsProperties(
433 com.liferay.portal.kernel.util.UnicodeProperties settingsProperties) {
434 _layoutSet.setSettingsProperties(settingsProperties);
435 }
436
437 public LayoutSet getWrappedLayoutSet() {
438 return _layoutSet;
439 }
440
441 private LayoutSet _layoutSet;
442 }