001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * The contents of this file are subject to the terms of the Liferay Enterprise
005     * Subscription License ("License"). You may not use this file except in
006     * compliance with the License. You can obtain a copy of the License by
007     * contacting Liferay, Inc. See the License for the specific language governing
008     * permissions and limitations under the License, including but not limited to
009     * distribution rights of the Software.
010     *
011     *
012     *
013     */
014    
015    package com.liferay.portlet.journal.model;
016    
017    /**
018     * <p>
019     * This class is a wrapper for {@link JournalArticleImage}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       JournalArticleImage
024     * @generated
025     */
026    public class JournalArticleImageWrapper implements JournalArticleImage {
027            public JournalArticleImageWrapper(JournalArticleImage journalArticleImage) {
028                    _journalArticleImage = journalArticleImage;
029            }
030    
031            /**
032            * Gets the primary key of this journal article image.
033            *
034            * @return the primary key of this journal article image
035            */
036            public long getPrimaryKey() {
037                    return _journalArticleImage.getPrimaryKey();
038            }
039    
040            /**
041            * Sets the primary key of this journal article image
042            *
043            * @param pk the primary key of this journal article image
044            */
045            public void setPrimaryKey(long pk) {
046                    _journalArticleImage.setPrimaryKey(pk);
047            }
048    
049            /**
050            * Gets the article image id of this journal article image.
051            *
052            * @return the article image id of this journal article image
053            */
054            public long getArticleImageId() {
055                    return _journalArticleImage.getArticleImageId();
056            }
057    
058            /**
059            * Sets the article image id of this journal article image.
060            *
061            * @param articleImageId the article image id of this journal article image
062            */
063            public void setArticleImageId(long articleImageId) {
064                    _journalArticleImage.setArticleImageId(articleImageId);
065            }
066    
067            /**
068            * Gets the group id of this journal article image.
069            *
070            * @return the group id of this journal article image
071            */
072            public long getGroupId() {
073                    return _journalArticleImage.getGroupId();
074            }
075    
076            /**
077            * Sets the group id of this journal article image.
078            *
079            * @param groupId the group id of this journal article image
080            */
081            public void setGroupId(long groupId) {
082                    _journalArticleImage.setGroupId(groupId);
083            }
084    
085            /**
086            * Gets the article id of this journal article image.
087            *
088            * @return the article id of this journal article image
089            */
090            public java.lang.String getArticleId() {
091                    return _journalArticleImage.getArticleId();
092            }
093    
094            /**
095            * Sets the article id of this journal article image.
096            *
097            * @param articleId the article id of this journal article image
098            */
099            public void setArticleId(java.lang.String articleId) {
100                    _journalArticleImage.setArticleId(articleId);
101            }
102    
103            /**
104            * Gets the version of this journal article image.
105            *
106            * @return the version of this journal article image
107            */
108            public double getVersion() {
109                    return _journalArticleImage.getVersion();
110            }
111    
112            /**
113            * Sets the version of this journal article image.
114            *
115            * @param version the version of this journal article image
116            */
117            public void setVersion(double version) {
118                    _journalArticleImage.setVersion(version);
119            }
120    
121            /**
122            * Gets the el instance id of this journal article image.
123            *
124            * @return the el instance id of this journal article image
125            */
126            public java.lang.String getElInstanceId() {
127                    return _journalArticleImage.getElInstanceId();
128            }
129    
130            /**
131            * Sets the el instance id of this journal article image.
132            *
133            * @param elInstanceId the el instance id of this journal article image
134            */
135            public void setElInstanceId(java.lang.String elInstanceId) {
136                    _journalArticleImage.setElInstanceId(elInstanceId);
137            }
138    
139            /**
140            * Gets the el name of this journal article image.
141            *
142            * @return the el name of this journal article image
143            */
144            public java.lang.String getElName() {
145                    return _journalArticleImage.getElName();
146            }
147    
148            /**
149            * Sets the el name of this journal article image.
150            *
151            * @param elName the el name of this journal article image
152            */
153            public void setElName(java.lang.String elName) {
154                    _journalArticleImage.setElName(elName);
155            }
156    
157            /**
158            * Gets the language id of this journal article image.
159            *
160            * @return the language id of this journal article image
161            */
162            public java.lang.String getLanguageId() {
163                    return _journalArticleImage.getLanguageId();
164            }
165    
166            /**
167            * Sets the language id of this journal article image.
168            *
169            * @param languageId the language id of this journal article image
170            */
171            public void setLanguageId(java.lang.String languageId) {
172                    _journalArticleImage.setLanguageId(languageId);
173            }
174    
175            /**
176            * Gets the temp image of this journal article image.
177            *
178            * @return the temp image of this journal article image
179            */
180            public boolean getTempImage() {
181                    return _journalArticleImage.getTempImage();
182            }
183    
184            /**
185            * Determines whether this journal article image is temp image.
186            *
187            * @return whether this journal article image is temp image
188            */
189            public boolean isTempImage() {
190                    return _journalArticleImage.isTempImage();
191            }
192    
193            /**
194            * Sets whether this {$entity.humanName} is temp image.
195            *
196            * @param tempImage the temp image of this journal article image
197            */
198            public void setTempImage(boolean tempImage) {
199                    _journalArticleImage.setTempImage(tempImage);
200            }
201    
202            public boolean isNew() {
203                    return _journalArticleImage.isNew();
204            }
205    
206            public void setNew(boolean n) {
207                    _journalArticleImage.setNew(n);
208            }
209    
210            public boolean isCachedModel() {
211                    return _journalArticleImage.isCachedModel();
212            }
213    
214            public void setCachedModel(boolean cachedModel) {
215                    _journalArticleImage.setCachedModel(cachedModel);
216            }
217    
218            public boolean isEscapedModel() {
219                    return _journalArticleImage.isEscapedModel();
220            }
221    
222            public void setEscapedModel(boolean escapedModel) {
223                    _journalArticleImage.setEscapedModel(escapedModel);
224            }
225    
226            public java.io.Serializable getPrimaryKeyObj() {
227                    return _journalArticleImage.getPrimaryKeyObj();
228            }
229    
230            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
231                    return _journalArticleImage.getExpandoBridge();
232            }
233    
234            public void setExpandoBridgeAttributes(
235                    com.liferay.portal.service.ServiceContext serviceContext) {
236                    _journalArticleImage.setExpandoBridgeAttributes(serviceContext);
237            }
238    
239            public java.lang.Object clone() {
240                    return _journalArticleImage.clone();
241            }
242    
243            public int compareTo(
244                    com.liferay.portlet.journal.model.JournalArticleImage journalArticleImage) {
245                    return _journalArticleImage.compareTo(journalArticleImage);
246            }
247    
248            public int hashCode() {
249                    return _journalArticleImage.hashCode();
250            }
251    
252            public com.liferay.portlet.journal.model.JournalArticleImage toEscapedModel() {
253                    return _journalArticleImage.toEscapedModel();
254            }
255    
256            public java.lang.String toString() {
257                    return _journalArticleImage.toString();
258            }
259    
260            public java.lang.String toXmlString() {
261                    return _journalArticleImage.toXmlString();
262            }
263    
264            public JournalArticleImage getWrappedJournalArticleImage() {
265                    return _journalArticleImage;
266            }
267    
268            private JournalArticleImage _journalArticleImage;
269    }