001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portal.model;
016    
017    /**
018     * <p>
019     * This class is a wrapper for {@link LayoutSetPrototype}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       LayoutSetPrototype
024     * @generated
025     */
026    public class LayoutSetPrototypeWrapper implements LayoutSetPrototype {
027            public LayoutSetPrototypeWrapper(LayoutSetPrototype layoutSetPrototype) {
028                    _layoutSetPrototype = layoutSetPrototype;
029            }
030    
031            public long getPrimaryKey() {
032                    return _layoutSetPrototype.getPrimaryKey();
033            }
034    
035            public void setPrimaryKey(long pk) {
036                    _layoutSetPrototype.setPrimaryKey(pk);
037            }
038    
039            public long getLayoutSetPrototypeId() {
040                    return _layoutSetPrototype.getLayoutSetPrototypeId();
041            }
042    
043            public void setLayoutSetPrototypeId(long layoutSetPrototypeId) {
044                    _layoutSetPrototype.setLayoutSetPrototypeId(layoutSetPrototypeId);
045            }
046    
047            public long getCompanyId() {
048                    return _layoutSetPrototype.getCompanyId();
049            }
050    
051            public void setCompanyId(long companyId) {
052                    _layoutSetPrototype.setCompanyId(companyId);
053            }
054    
055            public java.lang.String getName() {
056                    return _layoutSetPrototype.getName();
057            }
058    
059            public java.lang.String getName(java.util.Locale locale) {
060                    return _layoutSetPrototype.getName(locale);
061            }
062    
063            public java.lang.String getName(java.util.Locale locale, boolean useDefault) {
064                    return _layoutSetPrototype.getName(locale, useDefault);
065            }
066    
067            public java.lang.String getName(java.lang.String languageId) {
068                    return _layoutSetPrototype.getName(languageId);
069            }
070    
071            public java.lang.String getName(java.lang.String languageId,
072                    boolean useDefault) {
073                    return _layoutSetPrototype.getName(languageId, useDefault);
074            }
075    
076            public java.util.Map<java.util.Locale, java.lang.String> getNameMap() {
077                    return _layoutSetPrototype.getNameMap();
078            }
079    
080            public void setName(java.lang.String name) {
081                    _layoutSetPrototype.setName(name);
082            }
083    
084            public void setName(java.util.Locale locale, java.lang.String name) {
085                    _layoutSetPrototype.setName(locale, name);
086            }
087    
088            public void setNameMap(
089                    java.util.Map<java.util.Locale, java.lang.String> nameMap) {
090                    _layoutSetPrototype.setNameMap(nameMap);
091            }
092    
093            public java.lang.String getDescription() {
094                    return _layoutSetPrototype.getDescription();
095            }
096    
097            public void setDescription(java.lang.String description) {
098                    _layoutSetPrototype.setDescription(description);
099            }
100    
101            public java.lang.String getSettings() {
102                    return _layoutSetPrototype.getSettings();
103            }
104    
105            public void setSettings(java.lang.String settings) {
106                    _layoutSetPrototype.setSettings(settings);
107            }
108    
109            public boolean getActive() {
110                    return _layoutSetPrototype.getActive();
111            }
112    
113            public boolean isActive() {
114                    return _layoutSetPrototype.isActive();
115            }
116    
117            public void setActive(boolean active) {
118                    _layoutSetPrototype.setActive(active);
119            }
120    
121            public com.liferay.portal.model.LayoutSetPrototype toEscapedModel() {
122                    return _layoutSetPrototype.toEscapedModel();
123            }
124    
125            public boolean isNew() {
126                    return _layoutSetPrototype.isNew();
127            }
128    
129            public void setNew(boolean n) {
130                    _layoutSetPrototype.setNew(n);
131            }
132    
133            public boolean isCachedModel() {
134                    return _layoutSetPrototype.isCachedModel();
135            }
136    
137            public void setCachedModel(boolean cachedModel) {
138                    _layoutSetPrototype.setCachedModel(cachedModel);
139            }
140    
141            public boolean isEscapedModel() {
142                    return _layoutSetPrototype.isEscapedModel();
143            }
144    
145            public void setEscapedModel(boolean escapedModel) {
146                    _layoutSetPrototype.setEscapedModel(escapedModel);
147            }
148    
149            public java.io.Serializable getPrimaryKeyObj() {
150                    return _layoutSetPrototype.getPrimaryKeyObj();
151            }
152    
153            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
154                    return _layoutSetPrototype.getExpandoBridge();
155            }
156    
157            public void setExpandoBridgeAttributes(
158                    com.liferay.portal.service.ServiceContext serviceContext) {
159                    _layoutSetPrototype.setExpandoBridgeAttributes(serviceContext);
160            }
161    
162            public java.lang.Object clone() {
163                    return _layoutSetPrototype.clone();
164            }
165    
166            public int compareTo(
167                    com.liferay.portal.model.LayoutSetPrototype layoutSetPrototype) {
168                    return _layoutSetPrototype.compareTo(layoutSetPrototype);
169            }
170    
171            public int hashCode() {
172                    return _layoutSetPrototype.hashCode();
173            }
174    
175            public java.lang.String toString() {
176                    return _layoutSetPrototype.toString();
177            }
178    
179            public java.lang.String toXmlString() {
180                    return _layoutSetPrototype.toXmlString();
181            }
182    
183            public com.liferay.portal.model.Group getGroup()
184                    throws com.liferay.portal.kernel.exception.PortalException,
185                            com.liferay.portal.kernel.exception.SystemException {
186                    return _layoutSetPrototype.getGroup();
187            }
188    
189            public com.liferay.portal.model.LayoutSet getLayoutSet()
190                    throws com.liferay.portal.kernel.exception.PortalException,
191                            com.liferay.portal.kernel.exception.SystemException {
192                    return _layoutSetPrototype.getLayoutSet();
193            }
194    
195            public LayoutSetPrototype getWrappedLayoutSetPrototype() {
196                    return _layoutSetPrototype;
197            }
198    
199            private LayoutSetPrototype _layoutSetPrototype;
200    }