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.portlet.softwarecatalog.model;
16  
17  
18  /**
19   * <a href="SCProductScreenshotSoap.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 SCProductScreenshot}.
28   * </p>
29   *
30   * @author    Brian Wing Shun Chan
31   * @see       SCProductScreenshot
32   * @generated
33   */
34  public class SCProductScreenshotWrapper implements SCProductScreenshot {
35      public SCProductScreenshotWrapper(SCProductScreenshot scProductScreenshot) {
36          _scProductScreenshot = scProductScreenshot;
37      }
38  
39      public long getPrimaryKey() {
40          return _scProductScreenshot.getPrimaryKey();
41      }
42  
43      public void setPrimaryKey(long pk) {
44          _scProductScreenshot.setPrimaryKey(pk);
45      }
46  
47      public long getProductScreenshotId() {
48          return _scProductScreenshot.getProductScreenshotId();
49      }
50  
51      public void setProductScreenshotId(long productScreenshotId) {
52          _scProductScreenshot.setProductScreenshotId(productScreenshotId);
53      }
54  
55      public long getCompanyId() {
56          return _scProductScreenshot.getCompanyId();
57      }
58  
59      public void setCompanyId(long companyId) {
60          _scProductScreenshot.setCompanyId(companyId);
61      }
62  
63      public long getGroupId() {
64          return _scProductScreenshot.getGroupId();
65      }
66  
67      public void setGroupId(long groupId) {
68          _scProductScreenshot.setGroupId(groupId);
69      }
70  
71      public long getProductEntryId() {
72          return _scProductScreenshot.getProductEntryId();
73      }
74  
75      public void setProductEntryId(long productEntryId) {
76          _scProductScreenshot.setProductEntryId(productEntryId);
77      }
78  
79      public long getThumbnailId() {
80          return _scProductScreenshot.getThumbnailId();
81      }
82  
83      public void setThumbnailId(long thumbnailId) {
84          _scProductScreenshot.setThumbnailId(thumbnailId);
85      }
86  
87      public long getFullImageId() {
88          return _scProductScreenshot.getFullImageId();
89      }
90  
91      public void setFullImageId(long fullImageId) {
92          _scProductScreenshot.setFullImageId(fullImageId);
93      }
94  
95      public int getPriority() {
96          return _scProductScreenshot.getPriority();
97      }
98  
99      public void setPriority(int priority) {
100         _scProductScreenshot.setPriority(priority);
101     }
102 
103     public com.liferay.portlet.softwarecatalog.model.SCProductScreenshot toEscapedModel() {
104         return _scProductScreenshot.toEscapedModel();
105     }
106 
107     public boolean isNew() {
108         return _scProductScreenshot.isNew();
109     }
110 
111     public boolean setNew(boolean n) {
112         return _scProductScreenshot.setNew(n);
113     }
114 
115     public boolean isCachedModel() {
116         return _scProductScreenshot.isCachedModel();
117     }
118 
119     public void setCachedModel(boolean cachedModel) {
120         _scProductScreenshot.setCachedModel(cachedModel);
121     }
122 
123     public boolean isEscapedModel() {
124         return _scProductScreenshot.isEscapedModel();
125     }
126 
127     public void setEscapedModel(boolean escapedModel) {
128         _scProductScreenshot.setEscapedModel(escapedModel);
129     }
130 
131     public java.io.Serializable getPrimaryKeyObj() {
132         return _scProductScreenshot.getPrimaryKeyObj();
133     }
134 
135     public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
136         return _scProductScreenshot.getExpandoBridge();
137     }
138 
139     public void setExpandoBridgeAttributes(
140         com.liferay.portal.service.ServiceContext serviceContext) {
141         _scProductScreenshot.setExpandoBridgeAttributes(serviceContext);
142     }
143 
144     public java.lang.Object clone() {
145         return _scProductScreenshot.clone();
146     }
147 
148     public int compareTo(
149         com.liferay.portlet.softwarecatalog.model.SCProductScreenshot scProductScreenshot) {
150         return _scProductScreenshot.compareTo(scProductScreenshot);
151     }
152 
153     public int hashCode() {
154         return _scProductScreenshot.hashCode();
155     }
156 
157     public java.lang.String toString() {
158         return _scProductScreenshot.toString();
159     }
160 
161     public java.lang.String toXmlString() {
162         return _scProductScreenshot.toXmlString();
163     }
164 
165     public SCProductScreenshot getWrappedSCProductScreenshot() {
166         return _scProductScreenshot;
167     }
168 
169     private SCProductScreenshot _scProductScreenshot;
170 }