Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
7480 vikram.rag 1
//
2
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 
3
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
4
// Any modifications to this file will be lost upon recompilation of the source schema. 
5
// Generated on: 2013.03.04 at 03:49:29 PM IST 
6
//
7
 
8
 
9
package in.shop2020.feeds.products;
10
 
11
import java.math.BigInteger;
12
import javax.xml.bind.annotation.XmlAccessType;
13
import javax.xml.bind.annotation.XmlAccessorType;
14
import javax.xml.bind.annotation.XmlElement;
15
import javax.xml.bind.annotation.XmlRootElement;
16
import javax.xml.bind.annotation.XmlSchemaType;
17
import javax.xml.bind.annotation.XmlType;
18
import javax.xml.bind.annotation.adapters.NormalizedStringAdapter;
19
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
20
 
21
 
22
/**
23
 * <p>Java class for anonymous complex type.
24
 * 
25
 * <p>The following schema fragment specifies the expected content contained within this class.
26
 * 
27
 * <pre>
28
 * &lt;complexType>
29
 *   &lt;complexContent>
30
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
31
 *       &lt;sequence>
32
 *         &lt;element ref="{}BatteryCellType" minOccurs="0"/>
33
 *         &lt;element name="BatteryChargeCycles" type="{http://www.w3.org/2001/XMLSchema}positiveInteger" minOccurs="0"/>
34
 *         &lt;element ref="{}BatteryPower" minOccurs="0"/>
35
 *         &lt;element ref="{}BoxContents" minOccurs="0"/>
36
 *         &lt;element ref="{}CameraFlash" minOccurs="0"/>
37
 *         &lt;element ref="{}FinishType" minOccurs="0"/>
38
 *         &lt;element ref="{}FlashDedication" minOccurs="0"/>
39
 *         &lt;element ref="{}FlashModesDescription" minOccurs="0"/>
40
 *         &lt;element ref="{}GuideNumber" minOccurs="0"/>
41
 *         &lt;element name="PowerSource" type="{}FortyStringNotNull" minOccurs="0"/>
42
 *       &lt;/sequence>
43
 *     &lt;/restriction>
44
 *   &lt;/complexContent>
45
 * &lt;/complexType>
46
 * </pre>
47
 * 
48
 * 
49
 */
50
@XmlAccessorType(XmlAccessType.FIELD)
51
@XmlType(name = "", propOrder = {
52
    "batteryCellType",
53
    "batteryChargeCycles",
54
    "batteryPower",
55
    "boxContents",
56
    "cameraFlash",
57
    "finishType",
58
    "flashDedication",
59
    "flashModesDescription",
60
    "guideNumber",
61
    "powerSource"
62
})
63
@XmlRootElement(name = "CECameraFlash")
64
public class CECameraFlash {
65
 
66
    @XmlElement(name = "BatteryCellType")
67
    protected BatteryCellTypeValues batteryCellType;
68
    @XmlElement(name = "BatteryChargeCycles")
69
    @XmlSchemaType(name = "positiveInteger")
70
    protected BigInteger batteryChargeCycles;
71
    @XmlElement(name = "BatteryPower")
72
    protected BatteryPowerIntegerDimension batteryPower;
73
    @XmlElement(name = "BoxContents")
74
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
75
    protected String boxContents;
76
    @XmlElement(name = "CameraFlash")
77
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
78
    protected String cameraFlash;
79
    @XmlElement(name = "FinishType")
80
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
81
    protected String finishType;
82
    @XmlElement(name = "FlashDedication")
83
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
84
    protected String flashDedication;
85
    @XmlElement(name = "FlashModesDescription")
86
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
87
    protected String flashModesDescription;
88
    @XmlElement(name = "GuideNumber")
89
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
90
    protected String guideNumber;
91
    @XmlElement(name = "PowerSource")
92
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
93
    protected String powerSource;
94
 
95
    /**
96
     * Gets the value of the batteryCellType property.
97
     * 
98
     * @return
99
     *     possible object is
100
     *     {@link BatteryCellTypeValues }
101
     *     
102
     */
103
    public BatteryCellTypeValues getBatteryCellType() {
104
        return batteryCellType;
105
    }
106
 
107
    /**
108
     * Sets the value of the batteryCellType property.
109
     * 
110
     * @param value
111
     *     allowed object is
112
     *     {@link BatteryCellTypeValues }
113
     *     
114
     */
115
    public void setBatteryCellType(BatteryCellTypeValues value) {
116
        this.batteryCellType = value;
117
    }
118
 
119
    /**
120
     * Gets the value of the batteryChargeCycles property.
121
     * 
122
     * @return
123
     *     possible object is
124
     *     {@link BigInteger }
125
     *     
126
     */
127
    public BigInteger getBatteryChargeCycles() {
128
        return batteryChargeCycles;
129
    }
130
 
131
    /**
132
     * Sets the value of the batteryChargeCycles property.
133
     * 
134
     * @param value
135
     *     allowed object is
136
     *     {@link BigInteger }
137
     *     
138
     */
139
    public void setBatteryChargeCycles(BigInteger value) {
140
        this.batteryChargeCycles = value;
141
    }
142
 
143
    /**
144
     * Gets the value of the batteryPower property.
145
     * 
146
     * @return
147
     *     possible object is
148
     *     {@link BatteryPowerIntegerDimension }
149
     *     
150
     */
151
    public BatteryPowerIntegerDimension getBatteryPower() {
152
        return batteryPower;
153
    }
154
 
155
    /**
156
     * Sets the value of the batteryPower property.
157
     * 
158
     * @param value
159
     *     allowed object is
160
     *     {@link BatteryPowerIntegerDimension }
161
     *     
162
     */
163
    public void setBatteryPower(BatteryPowerIntegerDimension value) {
164
        this.batteryPower = value;
165
    }
166
 
167
    /**
168
     * Gets the value of the boxContents property.
169
     * 
170
     * @return
171
     *     possible object is
172
     *     {@link String }
173
     *     
174
     */
175
    public String getBoxContents() {
176
        return boxContents;
177
    }
178
 
179
    /**
180
     * Sets the value of the boxContents property.
181
     * 
182
     * @param value
183
     *     allowed object is
184
     *     {@link String }
185
     *     
186
     */
187
    public void setBoxContents(String value) {
188
        this.boxContents = value;
189
    }
190
 
191
    /**
192
     * Gets the value of the cameraFlash property.
193
     * 
194
     * @return
195
     *     possible object is
196
     *     {@link String }
197
     *     
198
     */
199
    public String getCameraFlash() {
200
        return cameraFlash;
201
    }
202
 
203
    /**
204
     * Sets the value of the cameraFlash property.
205
     * 
206
     * @param value
207
     *     allowed object is
208
     *     {@link String }
209
     *     
210
     */
211
    public void setCameraFlash(String value) {
212
        this.cameraFlash = value;
213
    }
214
 
215
    /**
216
     * Gets the value of the finishType property.
217
     * 
218
     * @return
219
     *     possible object is
220
     *     {@link String }
221
     *     
222
     */
223
    public String getFinishType() {
224
        return finishType;
225
    }
226
 
227
    /**
228
     * Sets the value of the finishType property.
229
     * 
230
     * @param value
231
     *     allowed object is
232
     *     {@link String }
233
     *     
234
     */
235
    public void setFinishType(String value) {
236
        this.finishType = value;
237
    }
238
 
239
    /**
240
     * Gets the value of the flashDedication property.
241
     * 
242
     * @return
243
     *     possible object is
244
     *     {@link String }
245
     *     
246
     */
247
    public String getFlashDedication() {
248
        return flashDedication;
249
    }
250
 
251
    /**
252
     * Sets the value of the flashDedication property.
253
     * 
254
     * @param value
255
     *     allowed object is
256
     *     {@link String }
257
     *     
258
     */
259
    public void setFlashDedication(String value) {
260
        this.flashDedication = value;
261
    }
262
 
263
    /**
264
     * Gets the value of the flashModesDescription property.
265
     * 
266
     * @return
267
     *     possible object is
268
     *     {@link String }
269
     *     
270
     */
271
    public String getFlashModesDescription() {
272
        return flashModesDescription;
273
    }
274
 
275
    /**
276
     * Sets the value of the flashModesDescription property.
277
     * 
278
     * @param value
279
     *     allowed object is
280
     *     {@link String }
281
     *     
282
     */
283
    public void setFlashModesDescription(String value) {
284
        this.flashModesDescription = value;
285
    }
286
 
287
    /**
288
     * Gets the value of the guideNumber property.
289
     * 
290
     * @return
291
     *     possible object is
292
     *     {@link String }
293
     *     
294
     */
295
    public String getGuideNumber() {
296
        return guideNumber;
297
    }
298
 
299
    /**
300
     * Sets the value of the guideNumber property.
301
     * 
302
     * @param value
303
     *     allowed object is
304
     *     {@link String }
305
     *     
306
     */
307
    public void setGuideNumber(String value) {
308
        this.guideNumber = value;
309
    }
310
 
311
    /**
312
     * Gets the value of the powerSource property.
313
     * 
314
     * @return
315
     *     possible object is
316
     *     {@link String }
317
     *     
318
     */
319
    public String getPowerSource() {
320
        return powerSource;
321
    }
322
 
323
    /**
324
     * Sets the value of the powerSource property.
325
     * 
326
     * @param value
327
     *     allowed object is
328
     *     {@link String }
329
     *     
330
     */
331
    public void setPowerSource(String value) {
332
        this.powerSource = value;
333
    }
334
 
335
}