1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * This library is free software; you can redistribute it and/or modify it under
5    * the terms of the GNU Lesser General Public License as published by the Free
6    * Software Foundation; either version 2.1 of the License, or (at your option)
7    * any later version.
8    *
9    * This library is distributed in the hope that it will be useful, but WITHOUT
10   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11   * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
12   * details.
13   */
14  
15  package com.liferay.portal.model;
16  
17  
18  /**
19   * <a href="LayoutSetPrototypeSoap.java.html"><b><i>View Source</i></b></a>
20   *
21   * <p>
22   * ServiceBuilder generated this class. Modifications in this class will be
23   * overwritten the next time is generated.
24   * </p>
25   *
26   * <p>
27   * This class is a wrapper for {@link LayoutSetPrototype}.
28   * </p>
29   *
30   * @author    Brian Wing Shun Chan
31   * @see       LayoutSetPrototype
32   * @generated
33   */
34  public class LayoutSetPrototypeWrapper implements LayoutSetPrototype {
35      public LayoutSetPrototypeWrapper(LayoutSetPrototype layoutSetPrototype) {
36          _layoutSetPrototype = layoutSetPrototype;
37      }
38  
39      public long getPrimaryKey() {
40          return _layoutSetPrototype.getPrimaryKey();
41      }
42  
43      public void setPrimaryKey(long pk) {
44          _layoutSetPrototype.setPrimaryKey(pk);
45      }
46  
47      public long getLayoutSetPrototypeId() {
48          return _layoutSetPrototype.getLayoutSetPrototypeId();
49      }
50  
51      public void setLayoutSetPrototypeId(long layoutSetPrototypeId) {
52          _layoutSetPrototype.setLayoutSetPrototypeId(layoutSetPrototypeId);
53      }
54  
55      public long getCompanyId() {
56          return _layoutSetPrototype.getCompanyId();
57      }
58  
59      public void setCompanyId(long companyId) {
60          _layoutSetPrototype.setCompanyId(companyId);
61      }
62  
63      public java.lang.String getName() {
64          return _layoutSetPrototype.getName();
65      }
66  
67      public java.lang.String getName(java.util.Locale locale) {
68          return _layoutSetPrototype.getName(locale);
69      }
70  
71      public java.lang.String getName(java.util.Locale locale, boolean useDefault) {
72          return _layoutSetPrototype.getName(locale, useDefault);
73      }
74  
75      public java.lang.String getName(java.lang.String languageId) {
76          return _layoutSetPrototype.getName(languageId);
77      }
78  
79      public java.lang.String getName(java.lang.String languageId,
80          boolean useDefault) {
81          return _layoutSetPrototype.getName(languageId, useDefault);
82      }
83  
84      public java.util.Map<java.util.Locale, java.lang.String> getNameMap() {
85          return _layoutSetPrototype.getNameMap();
86      }
87  
88      public void setName(java.lang.String name) {
89          _layoutSetPrototype.setName(name);
90      }
91  
92      public void setName(java.util.Locale locale, java.lang.String name) {
93          _layoutSetPrototype.setName(locale, name);
94      }
95  
96      public void setNameMap(
97          java.util.Map<java.util.Locale, java.lang.String> nameMap) {
98          _layoutSetPrototype.setNameMap(nameMap);
99      }
100 
101     public java.lang.String getDescription() {
102         return _layoutSetPrototype.getDescription();
103     }
104 
105     public void setDescription(java.lang.String description) {
106         _layoutSetPrototype.setDescription(description);
107     }
108 
109     public java.lang.String getSettings() {
110         return _layoutSetPrototype.getSettings();
111     }
112 
113     public void setSettings(java.lang.String settings) {
114         _layoutSetPrototype.setSettings(settings);
115     }
116 
117     public boolean getActive() {
118         return _layoutSetPrototype.getActive();
119     }
120 
121     public boolean isActive() {
122         return _layoutSetPrototype.isActive();
123     }
124 
125     public void setActive(boolean active) {
126         _layoutSetPrototype.setActive(active);
127     }
128 
129     public com.liferay.portal.model.LayoutSetPrototype toEscapedModel() {
130         return _layoutSetPrototype.toEscapedModel();
131     }
132 
133     public boolean isNew() {
134         return _layoutSetPrototype.isNew();
135     }
136 
137     public boolean setNew(boolean n) {
138         return _layoutSetPrototype.setNew(n);
139     }
140 
141     public boolean isCachedModel() {
142         return _layoutSetPrototype.isCachedModel();
143     }
144 
145     public void setCachedModel(boolean cachedModel) {
146         _layoutSetPrototype.setCachedModel(cachedModel);
147     }
148 
149     public boolean isEscapedModel() {
150         return _layoutSetPrototype.isEscapedModel();
151     }
152 
153     public void setEscapedModel(boolean escapedModel) {
154         _layoutSetPrototype.setEscapedModel(escapedModel);
155     }
156 
157     public java.io.Serializable getPrimaryKeyObj() {
158         return _layoutSetPrototype.getPrimaryKeyObj();
159     }
160 
161     public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
162         return _layoutSetPrototype.getExpandoBridge();
163     }
164 
165     public void setExpandoBridgeAttributes(
166         com.liferay.portal.service.ServiceContext serviceContext) {
167         _layoutSetPrototype.setExpandoBridgeAttributes(serviceContext);
168     }
169 
170     public java.lang.Object clone() {
171         return _layoutSetPrototype.clone();
172     }
173 
174     public int compareTo(
175         com.liferay.portal.model.LayoutSetPrototype layoutSetPrototype) {
176         return _layoutSetPrototype.compareTo(layoutSetPrototype);
177     }
178 
179     public int hashCode() {
180         return _layoutSetPrototype.hashCode();
181     }
182 
183     public java.lang.String toString() {
184         return _layoutSetPrototype.toString();
185     }
186 
187     public java.lang.String toXmlString() {
188         return _layoutSetPrototype.toXmlString();
189     }
190 
191     public com.liferay.portal.model.Group getGroup()
192         throws com.liferay.portal.kernel.exception.PortalException,
193             com.liferay.portal.kernel.exception.SystemException {
194         return _layoutSetPrototype.getGroup();
195     }
196 
197     public com.liferay.portal.model.LayoutSet getLayoutSet()
198         throws com.liferay.portal.kernel.exception.PortalException,
199             com.liferay.portal.kernel.exception.SystemException {
200         return _layoutSetPrototype.getLayoutSet();
201     }
202 
203     public LayoutSetPrototype getWrappedLayoutSetPrototype() {
204         return _layoutSetPrototype;
205     }
206 
207     private LayoutSetPrototype _layoutSetPrototype;
208 }