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="LayoutPrototypeSoap.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 LayoutPrototype}.
28   * </p>
29   *
30   * @author    Brian Wing Shun Chan
31   * @see       LayoutPrototype
32   * @generated
33   */
34  public class LayoutPrototypeWrapper implements LayoutPrototype {
35      public LayoutPrototypeWrapper(LayoutPrototype layoutPrototype) {
36          _layoutPrototype = layoutPrototype;
37      }
38  
39      public long getPrimaryKey() {
40          return _layoutPrototype.getPrimaryKey();
41      }
42  
43      public void setPrimaryKey(long pk) {
44          _layoutPrototype.setPrimaryKey(pk);
45      }
46  
47      public long getLayoutPrototypeId() {
48          return _layoutPrototype.getLayoutPrototypeId();
49      }
50  
51      public void setLayoutPrototypeId(long layoutPrototypeId) {
52          _layoutPrototype.setLayoutPrototypeId(layoutPrototypeId);
53      }
54  
55      public long getCompanyId() {
56          return _layoutPrototype.getCompanyId();
57      }
58  
59      public void setCompanyId(long companyId) {
60          _layoutPrototype.setCompanyId(companyId);
61      }
62  
63      public java.lang.String getName() {
64          return _layoutPrototype.getName();
65      }
66  
67      public java.lang.String getName(java.util.Locale locale) {
68          return _layoutPrototype.getName(locale);
69      }
70  
71      public java.lang.String getName(java.util.Locale locale, boolean useDefault) {
72          return _layoutPrototype.getName(locale, useDefault);
73      }
74  
75      public java.lang.String getName(java.lang.String languageId) {
76          return _layoutPrototype.getName(languageId);
77      }
78  
79      public java.lang.String getName(java.lang.String languageId,
80          boolean useDefault) {
81          return _layoutPrototype.getName(languageId, useDefault);
82      }
83  
84      public java.util.Map<java.util.Locale, String> getNameMap() {
85          return _layoutPrototype.getNameMap();
86      }
87  
88      public void setName(java.lang.String name) {
89          _layoutPrototype.setName(name);
90      }
91  
92      public void setName(java.util.Locale locale, java.lang.String name) {
93          _layoutPrototype.setName(locale, name);
94      }
95  
96      public void setNameMap(java.util.Map<java.util.Locale, String> nameMap) {
97          _layoutPrototype.setNameMap(nameMap);
98      }
99  
100     public java.lang.String getDescription() {
101         return _layoutPrototype.getDescription();
102     }
103 
104     public void setDescription(java.lang.String description) {
105         _layoutPrototype.setDescription(description);
106     }
107 
108     public java.lang.String getSettings() {
109         return _layoutPrototype.getSettings();
110     }
111 
112     public void setSettings(java.lang.String settings) {
113         _layoutPrototype.setSettings(settings);
114     }
115 
116     public boolean getActive() {
117         return _layoutPrototype.getActive();
118     }
119 
120     public boolean isActive() {
121         return _layoutPrototype.isActive();
122     }
123 
124     public void setActive(boolean active) {
125         _layoutPrototype.setActive(active);
126     }
127 
128     public com.liferay.portal.model.LayoutPrototype toEscapedModel() {
129         return _layoutPrototype.toEscapedModel();
130     }
131 
132     public boolean isNew() {
133         return _layoutPrototype.isNew();
134     }
135 
136     public boolean setNew(boolean n) {
137         return _layoutPrototype.setNew(n);
138     }
139 
140     public boolean isCachedModel() {
141         return _layoutPrototype.isCachedModel();
142     }
143 
144     public void setCachedModel(boolean cachedModel) {
145         _layoutPrototype.setCachedModel(cachedModel);
146     }
147 
148     public boolean isEscapedModel() {
149         return _layoutPrototype.isEscapedModel();
150     }
151 
152     public void setEscapedModel(boolean escapedModel) {
153         _layoutPrototype.setEscapedModel(escapedModel);
154     }
155 
156     public java.io.Serializable getPrimaryKeyObj() {
157         return _layoutPrototype.getPrimaryKeyObj();
158     }
159 
160     public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
161         return _layoutPrototype.getExpandoBridge();
162     }
163 
164     public void setExpandoBridgeAttributes(
165         com.liferay.portal.service.ServiceContext serviceContext) {
166         _layoutPrototype.setExpandoBridgeAttributes(serviceContext);
167     }
168 
169     public java.lang.Object clone() {
170         return _layoutPrototype.clone();
171     }
172 
173     public int compareTo(
174         com.liferay.portal.model.LayoutPrototype layoutPrototype) {
175         return _layoutPrototype.compareTo(layoutPrototype);
176     }
177 
178     public int hashCode() {
179         return _layoutPrototype.hashCode();
180     }
181 
182     public java.lang.String toString() {
183         return _layoutPrototype.toString();
184     }
185 
186     public java.lang.String toXmlString() {
187         return _layoutPrototype.toXmlString();
188     }
189 
190     public com.liferay.portal.model.Group getGroup() {
191         return _layoutPrototype.getGroup();
192     }
193 
194     public com.liferay.portal.model.Layout getLayout() {
195         return _layoutPrototype.getLayout();
196     }
197 
198     public LayoutPrototype getWrappedLayoutPrototype() {
199         return _layoutPrototype;
200     }
201 
202     private LayoutPrototype _layoutPrototype;
203 }