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    /**
019     * <p>
020     * This class is a wrapper for {@link LayoutPrototype}.
021     * </p>
022     *
023     * @author    Brian Wing Shun Chan
024     * @see       LayoutPrototype
025     * @generated
026     */
027    public class LayoutPrototypeWrapper implements LayoutPrototype {
028            public LayoutPrototypeWrapper(LayoutPrototype layoutPrototype) {
029                    _layoutPrototype = layoutPrototype;
030            }
031    
032            public long getPrimaryKey() {
033                    return _layoutPrototype.getPrimaryKey();
034            }
035    
036            public void setPrimaryKey(long pk) {
037                    _layoutPrototype.setPrimaryKey(pk);
038            }
039    
040            public long getLayoutPrototypeId() {
041                    return _layoutPrototype.getLayoutPrototypeId();
042            }
043    
044            public void setLayoutPrototypeId(long layoutPrototypeId) {
045                    _layoutPrototype.setLayoutPrototypeId(layoutPrototypeId);
046            }
047    
048            public long getCompanyId() {
049                    return _layoutPrototype.getCompanyId();
050            }
051    
052            public void setCompanyId(long companyId) {
053                    _layoutPrototype.setCompanyId(companyId);
054            }
055    
056            public java.lang.String getName() {
057                    return _layoutPrototype.getName();
058            }
059    
060            public java.lang.String getName(java.util.Locale locale) {
061                    return _layoutPrototype.getName(locale);
062            }
063    
064            public java.lang.String getName(java.util.Locale locale, boolean useDefault) {
065                    return _layoutPrototype.getName(locale, useDefault);
066            }
067    
068            public java.lang.String getName(java.lang.String languageId) {
069                    return _layoutPrototype.getName(languageId);
070            }
071    
072            public java.lang.String getName(java.lang.String languageId,
073                    boolean useDefault) {
074                    return _layoutPrototype.getName(languageId, useDefault);
075            }
076    
077            public java.util.Map<java.util.Locale, java.lang.String> getNameMap() {
078                    return _layoutPrototype.getNameMap();
079            }
080    
081            public void setName(java.lang.String name) {
082                    _layoutPrototype.setName(name);
083            }
084    
085            public void setName(java.util.Locale locale, java.lang.String name) {
086                    _layoutPrototype.setName(locale, name);
087            }
088    
089            public void setNameMap(
090                    java.util.Map<java.util.Locale, java.lang.String> nameMap) {
091                    _layoutPrototype.setNameMap(nameMap);
092            }
093    
094            public java.lang.String getDescription() {
095                    return _layoutPrototype.getDescription();
096            }
097    
098            public void setDescription(java.lang.String description) {
099                    _layoutPrototype.setDescription(description);
100            }
101    
102            public java.lang.String getSettings() {
103                    return _layoutPrototype.getSettings();
104            }
105    
106            public void setSettings(java.lang.String settings) {
107                    _layoutPrototype.setSettings(settings);
108            }
109    
110            public boolean getActive() {
111                    return _layoutPrototype.getActive();
112            }
113    
114            public boolean isActive() {
115                    return _layoutPrototype.isActive();
116            }
117    
118            public void setActive(boolean active) {
119                    _layoutPrototype.setActive(active);
120            }
121    
122            public com.liferay.portal.model.LayoutPrototype toEscapedModel() {
123                    return _layoutPrototype.toEscapedModel();
124            }
125    
126            public boolean isNew() {
127                    return _layoutPrototype.isNew();
128            }
129    
130            public void setNew(boolean n) {
131                    _layoutPrototype.setNew(n);
132            }
133    
134            public boolean isCachedModel() {
135                    return _layoutPrototype.isCachedModel();
136            }
137    
138            public void setCachedModel(boolean cachedModel) {
139                    _layoutPrototype.setCachedModel(cachedModel);
140            }
141    
142            public boolean isEscapedModel() {
143                    return _layoutPrototype.isEscapedModel();
144            }
145    
146            public void setEscapedModel(boolean escapedModel) {
147                    _layoutPrototype.setEscapedModel(escapedModel);
148            }
149    
150            public java.io.Serializable getPrimaryKeyObj() {
151                    return _layoutPrototype.getPrimaryKeyObj();
152            }
153    
154            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
155                    return _layoutPrototype.getExpandoBridge();
156            }
157    
158            public void setExpandoBridgeAttributes(
159                    com.liferay.portal.service.ServiceContext serviceContext) {
160                    _layoutPrototype.setExpandoBridgeAttributes(serviceContext);
161            }
162    
163            public java.lang.Object clone() {
164                    return _layoutPrototype.clone();
165            }
166    
167            public int compareTo(
168                    com.liferay.portal.model.LayoutPrototype layoutPrototype) {
169                    return _layoutPrototype.compareTo(layoutPrototype);
170            }
171    
172            public int hashCode() {
173                    return _layoutPrototype.hashCode();
174            }
175    
176            public java.lang.String toString() {
177                    return _layoutPrototype.toString();
178            }
179    
180            public java.lang.String toXmlString() {
181                    return _layoutPrototype.toXmlString();
182            }
183    
184            public com.liferay.portal.model.Group getGroup()
185                    throws com.liferay.portal.kernel.exception.PortalException,
186                            com.liferay.portal.kernel.exception.SystemException {
187                    return _layoutPrototype.getGroup();
188            }
189    
190            public com.liferay.portal.model.Layout getLayout()
191                    throws com.liferay.portal.kernel.exception.PortalException,
192                            com.liferay.portal.kernel.exception.SystemException {
193                    return _layoutPrototype.getLayout();
194            }
195    
196            public LayoutPrototype getWrappedLayoutPrototype() {
197                    return _layoutPrototype;
198            }
199    
200            private LayoutPrototype _layoutPrototype;
201    }