1
14
15 package com.liferay.portal.model;
16
17
33 public class LayoutSetWrapper implements LayoutSet {
34 public LayoutSetWrapper(LayoutSet layoutSet) {
35 _layoutSet = layoutSet;
36 }
37
38 public long getPrimaryKey() {
39 return _layoutSet.getPrimaryKey();
40 }
41
42 public void setPrimaryKey(long pk) {
43 _layoutSet.setPrimaryKey(pk);
44 }
45
46 public long getLayoutSetId() {
47 return _layoutSet.getLayoutSetId();
48 }
49
50 public void setLayoutSetId(long layoutSetId) {
51 _layoutSet.setLayoutSetId(layoutSetId);
52 }
53
54 public long getGroupId() {
55 return _layoutSet.getGroupId();
56 }
57
58 public void setGroupId(long groupId) {
59 _layoutSet.setGroupId(groupId);
60 }
61
62 public long getCompanyId() {
63 return _layoutSet.getCompanyId();
64 }
65
66 public void setCompanyId(long companyId) {
67 _layoutSet.setCompanyId(companyId);
68 }
69
70 public boolean getPrivateLayout() {
71 return _layoutSet.getPrivateLayout();
72 }
73
74 public boolean isPrivateLayout() {
75 return _layoutSet.isPrivateLayout();
76 }
77
78 public void setPrivateLayout(boolean privateLayout) {
79 _layoutSet.setPrivateLayout(privateLayout);
80 }
81
82 public boolean getLogo() {
83 return _layoutSet.getLogo();
84 }
85
86 public boolean isLogo() {
87 return _layoutSet.isLogo();
88 }
89
90 public void setLogo(boolean logo) {
91 _layoutSet.setLogo(logo);
92 }
93
94 public long getLogoId() {
95 return _layoutSet.getLogoId();
96 }
97
98 public void setLogoId(long logoId) {
99 _layoutSet.setLogoId(logoId);
100 }
101
102 public java.lang.String getThemeId() {
103 return _layoutSet.getThemeId();
104 }
105
106 public void setThemeId(java.lang.String themeId) {
107 _layoutSet.setThemeId(themeId);
108 }
109
110 public java.lang.String getColorSchemeId() {
111 return _layoutSet.getColorSchemeId();
112 }
113
114 public void setColorSchemeId(java.lang.String colorSchemeId) {
115 _layoutSet.setColorSchemeId(colorSchemeId);
116 }
117
118 public java.lang.String getWapThemeId() {
119 return _layoutSet.getWapThemeId();
120 }
121
122 public void setWapThemeId(java.lang.String wapThemeId) {
123 _layoutSet.setWapThemeId(wapThemeId);
124 }
125
126 public java.lang.String getWapColorSchemeId() {
127 return _layoutSet.getWapColorSchemeId();
128 }
129
130 public void setWapColorSchemeId(java.lang.String wapColorSchemeId) {
131 _layoutSet.setWapColorSchemeId(wapColorSchemeId);
132 }
133
134 public java.lang.String getCss() {
135 return _layoutSet.getCss();
136 }
137
138 public void setCss(java.lang.String css) {
139 _layoutSet.setCss(css);
140 }
141
142 public int getPageCount() {
143 return _layoutSet.getPageCount();
144 }
145
146 public void setPageCount(int pageCount) {
147 _layoutSet.setPageCount(pageCount);
148 }
149
150 public java.lang.String getVirtualHost() {
151 return _layoutSet.getVirtualHost();
152 }
153
154 public void setVirtualHost(java.lang.String virtualHost) {
155 _layoutSet.setVirtualHost(virtualHost);
156 }
157
158 public boolean isNew() {
159 return _layoutSet.isNew();
160 }
161
162 public boolean setNew(boolean n) {
163 return _layoutSet.setNew(n);
164 }
165
166 public boolean isCachedModel() {
167 return _layoutSet.isCachedModel();
168 }
169
170 public void setCachedModel(boolean cachedModel) {
171 _layoutSet.setCachedModel(cachedModel);
172 }
173
174 public boolean isEscapedModel() {
175 return _layoutSet.isEscapedModel();
176 }
177
178 public void setEscapedModel(boolean escapedModel) {
179 _layoutSet.setEscapedModel(escapedModel);
180 }
181
182 public java.io.Serializable getPrimaryKeyObj() {
183 return _layoutSet.getPrimaryKeyObj();
184 }
185
186 public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
187 return _layoutSet.getExpandoBridge();
188 }
189
190 public void setExpandoBridgeAttributes(
191 com.liferay.portal.service.ServiceContext serviceContext) {
192 _layoutSet.setExpandoBridgeAttributes(serviceContext);
193 }
194
195 public java.lang.Object clone() {
196 return _layoutSet.clone();
197 }
198
199 public int compareTo(com.liferay.portal.model.LayoutSet layoutSet) {
200 return _layoutSet.compareTo(layoutSet);
201 }
202
203 public int hashCode() {
204 return _layoutSet.hashCode();
205 }
206
207 public com.liferay.portal.model.LayoutSet toEscapedModel() {
208 return _layoutSet.toEscapedModel();
209 }
210
211 public java.lang.String toString() {
212 return _layoutSet.toString();
213 }
214
215 public java.lang.String toXmlString() {
216 return _layoutSet.toXmlString();
217 }
218
219 public com.liferay.portal.model.Theme getTheme()
220 throws com.liferay.portal.SystemException {
221 return _layoutSet.getTheme();
222 }
223
224 public com.liferay.portal.model.ColorScheme getColorScheme()
225 throws com.liferay.portal.SystemException {
226 return _layoutSet.getColorScheme();
227 }
228
229 public com.liferay.portal.model.Group getGroup() {
230 return _layoutSet.getGroup();
231 }
232
233 public com.liferay.portal.model.Theme getWapTheme()
234 throws com.liferay.portal.SystemException {
235 return _layoutSet.getWapTheme();
236 }
237
238 public com.liferay.portal.model.ColorScheme getWapColorScheme()
239 throws com.liferay.portal.SystemException {
240 return _layoutSet.getWapColorScheme();
241 }
242
243 public LayoutSet getWrappedLayoutSet() {
244 return _layoutSet;
245 }
246
247 private LayoutSet _layoutSet;
248 }