Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
7481 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 java.util.ArrayList;
13
import java.util.List;
14
import javax.xml.bind.annotation.XmlAccessType;
15
import javax.xml.bind.annotation.XmlAccessorType;
16
import javax.xml.bind.annotation.XmlElement;
17
import javax.xml.bind.annotation.XmlRootElement;
18
import javax.xml.bind.annotation.XmlSchemaType;
19
import javax.xml.bind.annotation.XmlType;
20
import javax.xml.bind.annotation.adapters.NormalizedStringAdapter;
21
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
22
 
23
 
24
/**
25
 * <p>Java class for anonymous complex type.
26
 * 
27
 * <p>The following schema fragment specifies the expected content contained within this class.
28
 * 
29
 * <pre>
30
 * &lt;complexType>
31
 *   &lt;complexContent>
32
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
33
 *       &lt;sequence>
34
 *         &lt;element ref="{}BatteryCellType" minOccurs="0"/>
35
 *         &lt;element name="BatteryChargeCycles" type="{http://www.w3.org/2001/XMLSchema}positiveInteger" minOccurs="0"/>
36
 *         &lt;element ref="{}BatteryPower" minOccurs="0"/>
37
 *         &lt;element ref="{}BoxContents" minOccurs="0"/>
38
 *         &lt;element ref="{}FinishType" minOccurs="0"/>
39
 *         &lt;element ref="{}InternetApplications" maxOccurs="5" minOccurs="0"/>
40
 *         &lt;element ref="{}PowerPlugType" minOccurs="0"/>
41
 *         &lt;element name="PowerSource" type="{}FortyStringNotNull" minOccurs="0"/>
42
 *         &lt;element name="ScreenSize" type="{}LengthDimension" minOccurs="0"/>
43
 *         &lt;element name="VideoResolution" type="{}PixelDimension" minOccurs="0"/>
44
 *         &lt;element name="WirelessTechnology" type="{}StringNotNull" maxOccurs="5" minOccurs="0"/>
45
 *       &lt;/sequence>
46
 *     &lt;/restriction>
47
 *   &lt;/complexContent>
48
 * &lt;/complexType>
49
 * </pre>
50
 * 
51
 * 
52
 */
53
@XmlAccessorType(XmlAccessType.FIELD)
54
@XmlType(name = "", propOrder = {
55
    "batteryCellType",
56
    "batteryChargeCycles",
57
    "batteryPower",
58
    "boxContents",
59
    "finishType",
60
    "internetApplications",
61
    "powerPlugType",
62
    "powerSource",
63
    "screenSize",
64
    "videoResolution",
65
    "wirelessTechnology"
66
})
67
@XmlRootElement(name = "DigitalPictureFrame")
68
public class DigitalPictureFrame {
69
 
70
    @XmlElement(name = "BatteryCellType")
71
    protected BatteryCellTypeValues batteryCellType;
72
    @XmlElement(name = "BatteryChargeCycles")
73
    @XmlSchemaType(name = "positiveInteger")
74
    protected BigInteger batteryChargeCycles;
75
    @XmlElement(name = "BatteryPower")
76
    protected BatteryPowerIntegerDimension batteryPower;
77
    @XmlElement(name = "BoxContents")
78
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
79
    protected String boxContents;
80
    @XmlElement(name = "FinishType")
81
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
82
    protected String finishType;
83
    @XmlElement(name = "InternetApplications")
84
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
85
    protected List<String> internetApplications;
86
    @XmlElement(name = "PowerPlugType")
87
    protected PowerPlugType powerPlugType;
88
    @XmlElement(name = "PowerSource")
89
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
90
    protected String powerSource;
91
    @XmlElement(name = "ScreenSize")
92
    protected LengthDimension screenSize;
93
    @XmlElement(name = "VideoResolution")
94
    protected PixelDimension videoResolution;
95
    @XmlElement(name = "WirelessTechnology")
96
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
97
    protected List<String> wirelessTechnology;
98
 
99
    /**
100
     * Gets the value of the batteryCellType property.
101
     * 
102
     * @return
103
     *     possible object is
104
     *     {@link BatteryCellTypeValues }
105
     *     
106
     */
107
    public BatteryCellTypeValues getBatteryCellType() {
108
        return batteryCellType;
109
    }
110
 
111
    /**
112
     * Sets the value of the batteryCellType property.
113
     * 
114
     * @param value
115
     *     allowed object is
116
     *     {@link BatteryCellTypeValues }
117
     *     
118
     */
119
    public void setBatteryCellType(BatteryCellTypeValues value) {
120
        this.batteryCellType = value;
121
    }
122
 
123
    /**
124
     * Gets the value of the batteryChargeCycles property.
125
     * 
126
     * @return
127
     *     possible object is
128
     *     {@link BigInteger }
129
     *     
130
     */
131
    public BigInteger getBatteryChargeCycles() {
132
        return batteryChargeCycles;
133
    }
134
 
135
    /**
136
     * Sets the value of the batteryChargeCycles property.
137
     * 
138
     * @param value
139
     *     allowed object is
140
     *     {@link BigInteger }
141
     *     
142
     */
143
    public void setBatteryChargeCycles(BigInteger value) {
144
        this.batteryChargeCycles = value;
145
    }
146
 
147
    /**
148
     * Gets the value of the batteryPower property.
149
     * 
150
     * @return
151
     *     possible object is
152
     *     {@link BatteryPowerIntegerDimension }
153
     *     
154
     */
155
    public BatteryPowerIntegerDimension getBatteryPower() {
156
        return batteryPower;
157
    }
158
 
159
    /**
160
     * Sets the value of the batteryPower property.
161
     * 
162
     * @param value
163
     *     allowed object is
164
     *     {@link BatteryPowerIntegerDimension }
165
     *     
166
     */
167
    public void setBatteryPower(BatteryPowerIntegerDimension value) {
168
        this.batteryPower = value;
169
    }
170
 
171
    /**
172
     * Gets the value of the boxContents property.
173
     * 
174
     * @return
175
     *     possible object is
176
     *     {@link String }
177
     *     
178
     */
179
    public String getBoxContents() {
180
        return boxContents;
181
    }
182
 
183
    /**
184
     * Sets the value of the boxContents property.
185
     * 
186
     * @param value
187
     *     allowed object is
188
     *     {@link String }
189
     *     
190
     */
191
    public void setBoxContents(String value) {
192
        this.boxContents = value;
193
    }
194
 
195
    /**
196
     * Gets the value of the finishType property.
197
     * 
198
     * @return
199
     *     possible object is
200
     *     {@link String }
201
     *     
202
     */
203
    public String getFinishType() {
204
        return finishType;
205
    }
206
 
207
    /**
208
     * Sets the value of the finishType property.
209
     * 
210
     * @param value
211
     *     allowed object is
212
     *     {@link String }
213
     *     
214
     */
215
    public void setFinishType(String value) {
216
        this.finishType = value;
217
    }
218
 
219
    /**
220
     * Gets the value of the internetApplications property.
221
     * 
222
     * <p>
223
     * This accessor method returns a reference to the live list,
224
     * not a snapshot. Therefore any modification you make to the
225
     * returned list will be present inside the JAXB object.
226
     * This is why there is not a <CODE>set</CODE> method for the internetApplications property.
227
     * 
228
     * <p>
229
     * For example, to add a new item, do as follows:
230
     * <pre>
231
     *    getInternetApplications().add(newItem);
232
     * </pre>
233
     * 
234
     * 
235
     * <p>
236
     * Objects of the following type(s) are allowed in the list
237
     * {@link String }
238
     * 
239
     * 
240
     */
241
    public List<String> getInternetApplications() {
242
        if (internetApplications == null) {
243
            internetApplications = new ArrayList<String>();
244
        }
245
        return this.internetApplications;
246
    }
247
 
248
    /**
249
     * Gets the value of the powerPlugType property.
250
     * 
251
     * @return
252
     *     possible object is
253
     *     {@link PowerPlugType }
254
     *     
255
     */
256
    public PowerPlugType getPowerPlugType() {
257
        return powerPlugType;
258
    }
259
 
260
    /**
261
     * Sets the value of the powerPlugType property.
262
     * 
263
     * @param value
264
     *     allowed object is
265
     *     {@link PowerPlugType }
266
     *     
267
     */
268
    public void setPowerPlugType(PowerPlugType value) {
269
        this.powerPlugType = value;
270
    }
271
 
272
    /**
273
     * Gets the value of the powerSource property.
274
     * 
275
     * @return
276
     *     possible object is
277
     *     {@link String }
278
     *     
279
     */
280
    public String getPowerSource() {
281
        return powerSource;
282
    }
283
 
284
    /**
285
     * Sets the value of the powerSource property.
286
     * 
287
     * @param value
288
     *     allowed object is
289
     *     {@link String }
290
     *     
291
     */
292
    public void setPowerSource(String value) {
293
        this.powerSource = value;
294
    }
295
 
296
    /**
297
     * Gets the value of the screenSize property.
298
     * 
299
     * @return
300
     *     possible object is
301
     *     {@link LengthDimension }
302
     *     
303
     */
304
    public LengthDimension getScreenSize() {
305
        return screenSize;
306
    }
307
 
308
    /**
309
     * Sets the value of the screenSize property.
310
     * 
311
     * @param value
312
     *     allowed object is
313
     *     {@link LengthDimension }
314
     *     
315
     */
316
    public void setScreenSize(LengthDimension value) {
317
        this.screenSize = value;
318
    }
319
 
320
    /**
321
     * Gets the value of the videoResolution property.
322
     * 
323
     * @return
324
     *     possible object is
325
     *     {@link PixelDimension }
326
     *     
327
     */
328
    public PixelDimension getVideoResolution() {
329
        return videoResolution;
330
    }
331
 
332
    /**
333
     * Sets the value of the videoResolution property.
334
     * 
335
     * @param value
336
     *     allowed object is
337
     *     {@link PixelDimension }
338
     *     
339
     */
340
    public void setVideoResolution(PixelDimension value) {
341
        this.videoResolution = value;
342
    }
343
 
344
    /**
345
     * Gets the value of the wirelessTechnology property.
346
     * 
347
     * <p>
348
     * This accessor method returns a reference to the live list,
349
     * not a snapshot. Therefore any modification you make to the
350
     * returned list will be present inside the JAXB object.
351
     * This is why there is not a <CODE>set</CODE> method for the wirelessTechnology property.
352
     * 
353
     * <p>
354
     * For example, to add a new item, do as follows:
355
     * <pre>
356
     *    getWirelessTechnology().add(newItem);
357
     * </pre>
358
     * 
359
     * 
360
     * <p>
361
     * Objects of the following type(s) are allowed in the list
362
     * {@link String }
363
     * 
364
     * 
365
     */
366
    public List<String> getWirelessTechnology() {
367
        if (wirelessTechnology == null) {
368
            wirelessTechnology = new ArrayList<String>();
369
        }
370
        return this.wirelessTechnology;
371
    }
372
 
373
}