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