001
014
015 package com.liferay.portal.model;
016
017
026 public class LayoutSetPrototypeWrapper implements LayoutSetPrototype,
027 ModelWrapper<LayoutSetPrototype> {
028 public LayoutSetPrototypeWrapper(LayoutSetPrototype layoutSetPrototype) {
029 _layoutSetPrototype = layoutSetPrototype;
030 }
031
032 public Class<?> getModelClass() {
033 return LayoutSetPrototype.class;
034 }
035
036 public String getModelClassName() {
037 return LayoutSetPrototype.class.getName();
038 }
039
040
045 public long getPrimaryKey() {
046 return _layoutSetPrototype.getPrimaryKey();
047 }
048
049
054 public void setPrimaryKey(long primaryKey) {
055 _layoutSetPrototype.setPrimaryKey(primaryKey);
056 }
057
058
063 public java.lang.String getUuid() {
064 return _layoutSetPrototype.getUuid();
065 }
066
067
072 public void setUuid(java.lang.String uuid) {
073 _layoutSetPrototype.setUuid(uuid);
074 }
075
076
081 public long getLayoutSetPrototypeId() {
082 return _layoutSetPrototype.getLayoutSetPrototypeId();
083 }
084
085
090 public void setLayoutSetPrototypeId(long layoutSetPrototypeId) {
091 _layoutSetPrototype.setLayoutSetPrototypeId(layoutSetPrototypeId);
092 }
093
094
099 public long getCompanyId() {
100 return _layoutSetPrototype.getCompanyId();
101 }
102
103
108 public void setCompanyId(long companyId) {
109 _layoutSetPrototype.setCompanyId(companyId);
110 }
111
112
117 public java.lang.String getName() {
118 return _layoutSetPrototype.getName();
119 }
120
121
127 public java.lang.String getName(java.util.Locale locale) {
128 return _layoutSetPrototype.getName(locale);
129 }
130
131
138 public java.lang.String getName(java.util.Locale locale, boolean useDefault) {
139 return _layoutSetPrototype.getName(locale, useDefault);
140 }
141
142
148 public java.lang.String getName(java.lang.String languageId) {
149 return _layoutSetPrototype.getName(languageId);
150 }
151
152
159 public java.lang.String getName(java.lang.String languageId,
160 boolean useDefault) {
161 return _layoutSetPrototype.getName(languageId, useDefault);
162 }
163
164 public java.lang.String getNameCurrentLanguageId() {
165 return _layoutSetPrototype.getNameCurrentLanguageId();
166 }
167
168 public java.lang.String getNameCurrentValue() {
169 return _layoutSetPrototype.getNameCurrentValue();
170 }
171
172
177 public java.util.Map<java.util.Locale, java.lang.String> getNameMap() {
178 return _layoutSetPrototype.getNameMap();
179 }
180
181
186 public void setName(java.lang.String name) {
187 _layoutSetPrototype.setName(name);
188 }
189
190
196 public void setName(java.lang.String name, java.util.Locale locale) {
197 _layoutSetPrototype.setName(name, locale);
198 }
199
200
207 public void setName(java.lang.String name, java.util.Locale locale,
208 java.util.Locale defaultLocale) {
209 _layoutSetPrototype.setName(name, locale, defaultLocale);
210 }
211
212 public void setNameCurrentLanguageId(java.lang.String languageId) {
213 _layoutSetPrototype.setNameCurrentLanguageId(languageId);
214 }
215
216
221 public void setNameMap(
222 java.util.Map<java.util.Locale, java.lang.String> nameMap) {
223 _layoutSetPrototype.setNameMap(nameMap);
224 }
225
226
232 public void setNameMap(
233 java.util.Map<java.util.Locale, java.lang.String> nameMap,
234 java.util.Locale defaultLocale) {
235 _layoutSetPrototype.setNameMap(nameMap, defaultLocale);
236 }
237
238
243 public java.lang.String getDescription() {
244 return _layoutSetPrototype.getDescription();
245 }
246
247
252 public void setDescription(java.lang.String description) {
253 _layoutSetPrototype.setDescription(description);
254 }
255
256
261 public java.lang.String getSettings() {
262 return _layoutSetPrototype.getSettings();
263 }
264
265
270 public void setSettings(java.lang.String settings) {
271 _layoutSetPrototype.setSettings(settings);
272 }
273
274
279 public boolean getActive() {
280 return _layoutSetPrototype.getActive();
281 }
282
283
288 public boolean isActive() {
289 return _layoutSetPrototype.isActive();
290 }
291
292
297 public void setActive(boolean active) {
298 _layoutSetPrototype.setActive(active);
299 }
300
301 public boolean isNew() {
302 return _layoutSetPrototype.isNew();
303 }
304
305 public void setNew(boolean n) {
306 _layoutSetPrototype.setNew(n);
307 }
308
309 public boolean isCachedModel() {
310 return _layoutSetPrototype.isCachedModel();
311 }
312
313 public void setCachedModel(boolean cachedModel) {
314 _layoutSetPrototype.setCachedModel(cachedModel);
315 }
316
317 public boolean isEscapedModel() {
318 return _layoutSetPrototype.isEscapedModel();
319 }
320
321 public java.io.Serializable getPrimaryKeyObj() {
322 return _layoutSetPrototype.getPrimaryKeyObj();
323 }
324
325 public void setPrimaryKeyObj(java.io.Serializable primaryKeyObj) {
326 _layoutSetPrototype.setPrimaryKeyObj(primaryKeyObj);
327 }
328
329 public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
330 return _layoutSetPrototype.getExpandoBridge();
331 }
332
333 public void setExpandoBridgeAttributes(
334 com.liferay.portal.service.ServiceContext serviceContext) {
335 _layoutSetPrototype.setExpandoBridgeAttributes(serviceContext);
336 }
337
338 @Override
339 public java.lang.Object clone() {
340 return new LayoutSetPrototypeWrapper((LayoutSetPrototype)_layoutSetPrototype.clone());
341 }
342
343 public int compareTo(
344 com.liferay.portal.model.LayoutSetPrototype layoutSetPrototype) {
345 return _layoutSetPrototype.compareTo(layoutSetPrototype);
346 }
347
348 @Override
349 public int hashCode() {
350 return _layoutSetPrototype.hashCode();
351 }
352
353 public com.liferay.portal.model.CacheModel<com.liferay.portal.model.LayoutSetPrototype> toCacheModel() {
354 return _layoutSetPrototype.toCacheModel();
355 }
356
357 public com.liferay.portal.model.LayoutSetPrototype toEscapedModel() {
358 return new LayoutSetPrototypeWrapper(_layoutSetPrototype.toEscapedModel());
359 }
360
361 @Override
362 public java.lang.String toString() {
363 return _layoutSetPrototype.toString();
364 }
365
366 public java.lang.String toXmlString() {
367 return _layoutSetPrototype.toXmlString();
368 }
369
370 public void persist()
371 throws com.liferay.portal.kernel.exception.SystemException {
372 _layoutSetPrototype.persist();
373 }
374
375 public com.liferay.portal.model.Group getGroup()
376 throws com.liferay.portal.kernel.exception.PortalException,
377 com.liferay.portal.kernel.exception.SystemException {
378 return _layoutSetPrototype.getGroup();
379 }
380
381 public com.liferay.portal.model.LayoutSet getLayoutSet()
382 throws com.liferay.portal.kernel.exception.PortalException,
383 com.liferay.portal.kernel.exception.SystemException {
384 return _layoutSetPrototype.getLayoutSet();
385 }
386
387 public com.liferay.portal.kernel.util.UnicodeProperties getSettingsProperties() {
388 return _layoutSetPrototype.getSettingsProperties();
389 }
390
391 public java.lang.String getSettingsProperty(java.lang.String key) {
392 return _layoutSetPrototype.getSettingsProperty(key);
393 }
394
395 public void setSettingsProperties(
396 com.liferay.portal.kernel.util.UnicodeProperties settingsProperties) {
397 _layoutSetPrototype.setSettingsProperties(settingsProperties);
398 }
399
400
403 public LayoutSetPrototype getWrappedLayoutSetPrototype() {
404 return _layoutSetPrototype;
405 }
406
407 public LayoutSetPrototype getWrappedModel() {
408 return _layoutSetPrototype;
409 }
410
411 public void resetOriginalValues() {
412 _layoutSetPrototype.resetOriginalValues();
413 }
414
415 private LayoutSetPrototype _layoutSetPrototype;
416 }