001
014
015 package com.liferay.portal.model;
016
017
026 public class LayoutSetPrototypeWrapper implements LayoutSetPrototype {
027 public LayoutSetPrototypeWrapper(LayoutSetPrototype layoutSetPrototype) {
028 _layoutSetPrototype = layoutSetPrototype;
029 }
030
031
036 public long getPrimaryKey() {
037 return _layoutSetPrototype.getPrimaryKey();
038 }
039
040
045 public void setPrimaryKey(long pk) {
046 _layoutSetPrototype.setPrimaryKey(pk);
047 }
048
049
054 public long getLayoutSetPrototypeId() {
055 return _layoutSetPrototype.getLayoutSetPrototypeId();
056 }
057
058
063 public void setLayoutSetPrototypeId(long layoutSetPrototypeId) {
064 _layoutSetPrototype.setLayoutSetPrototypeId(layoutSetPrototypeId);
065 }
066
067
072 public long getCompanyId() {
073 return _layoutSetPrototype.getCompanyId();
074 }
075
076
081 public void setCompanyId(long companyId) {
082 _layoutSetPrototype.setCompanyId(companyId);
083 }
084
085
090 public java.lang.String getName() {
091 return _layoutSetPrototype.getName();
092 }
093
094
100 public java.lang.String getName(java.util.Locale locale) {
101 return _layoutSetPrototype.getName(locale);
102 }
103
104
111 public java.lang.String getName(java.util.Locale locale, boolean useDefault) {
112 return _layoutSetPrototype.getName(locale, useDefault);
113 }
114
115
121 public java.lang.String getName(java.lang.String languageId) {
122 return _layoutSetPrototype.getName(languageId);
123 }
124
125
132 public java.lang.String getName(java.lang.String languageId,
133 boolean useDefault) {
134 return _layoutSetPrototype.getName(languageId, useDefault);
135 }
136
137
142 public java.util.Map<java.util.Locale, java.lang.String> getNameMap() {
143 return _layoutSetPrototype.getNameMap();
144 }
145
146
151 public void setName(java.lang.String name) {
152 _layoutSetPrototype.setName(name);
153 }
154
155
161 public void setName(java.util.Locale locale, java.lang.String name) {
162 _layoutSetPrototype.setName(locale, name);
163 }
164
165
170 public void setNameMap(
171 java.util.Map<java.util.Locale, java.lang.String> nameMap) {
172 _layoutSetPrototype.setNameMap(nameMap);
173 }
174
175
180 public java.lang.String getDescription() {
181 return _layoutSetPrototype.getDescription();
182 }
183
184
189 public void setDescription(java.lang.String description) {
190 _layoutSetPrototype.setDescription(description);
191 }
192
193
198 public java.lang.String getSettings() {
199 return _layoutSetPrototype.getSettings();
200 }
201
202
207 public void setSettings(java.lang.String settings) {
208 _layoutSetPrototype.setSettings(settings);
209 }
210
211
216 public boolean getActive() {
217 return _layoutSetPrototype.getActive();
218 }
219
220
225 public boolean isActive() {
226 return _layoutSetPrototype.isActive();
227 }
228
229
234 public void setActive(boolean active) {
235 _layoutSetPrototype.setActive(active);
236 }
237
238 public boolean isNew() {
239 return _layoutSetPrototype.isNew();
240 }
241
242 public void setNew(boolean n) {
243 _layoutSetPrototype.setNew(n);
244 }
245
246 public boolean isCachedModel() {
247 return _layoutSetPrototype.isCachedModel();
248 }
249
250 public void setCachedModel(boolean cachedModel) {
251 _layoutSetPrototype.setCachedModel(cachedModel);
252 }
253
254 public boolean isEscapedModel() {
255 return _layoutSetPrototype.isEscapedModel();
256 }
257
258 public void setEscapedModel(boolean escapedModel) {
259 _layoutSetPrototype.setEscapedModel(escapedModel);
260 }
261
262 public java.io.Serializable getPrimaryKeyObj() {
263 return _layoutSetPrototype.getPrimaryKeyObj();
264 }
265
266 public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
267 return _layoutSetPrototype.getExpandoBridge();
268 }
269
270 public void setExpandoBridgeAttributes(
271 com.liferay.portal.service.ServiceContext serviceContext) {
272 _layoutSetPrototype.setExpandoBridgeAttributes(serviceContext);
273 }
274
275 public java.lang.Object clone() {
276 return _layoutSetPrototype.clone();
277 }
278
279 public int compareTo(
280 com.liferay.portal.model.LayoutSetPrototype layoutSetPrototype) {
281 return _layoutSetPrototype.compareTo(layoutSetPrototype);
282 }
283
284 public int hashCode() {
285 return _layoutSetPrototype.hashCode();
286 }
287
288 public com.liferay.portal.model.LayoutSetPrototype toEscapedModel() {
289 return _layoutSetPrototype.toEscapedModel();
290 }
291
292 public java.lang.String toString() {
293 return _layoutSetPrototype.toString();
294 }
295
296 public java.lang.String toXmlString() {
297 return _layoutSetPrototype.toXmlString();
298 }
299
300 public com.liferay.portal.model.Group getGroup()
301 throws com.liferay.portal.kernel.exception.PortalException,
302 com.liferay.portal.kernel.exception.SystemException {
303 return _layoutSetPrototype.getGroup();
304 }
305
306 public com.liferay.portal.model.LayoutSet getLayoutSet()
307 throws com.liferay.portal.kernel.exception.PortalException,
308 com.liferay.portal.kernel.exception.SystemException {
309 return _layoutSetPrototype.getLayoutSet();
310 }
311
312 public LayoutSetPrototype getWrappedLayoutSetPrototype() {
313 return _layoutSetPrototype;
314 }
315
316 private LayoutSetPrototype _layoutSetPrototype;
317 }