Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
7487 kshitij.so 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 name="ComputerMemoryType" type="{}GraphicsRAMTypeValues" maxOccurs="10"/>
35
 *         &lt;element name="RAMSize" type="{}MemorySizeDimension"/>
36
 *         &lt;element name="PowerSource" type="{}FortyStringNotNull" minOccurs="0"/>
37
 *         &lt;element name="ScreenResolution" type="{}FortyStringNotNull"/>
38
 *         &lt;element name="ColorScreen" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
39
 *         &lt;element name="OperatingSystem" type="{}MediumStringNotNull" maxOccurs="5" minOccurs="0"/>
40
 *         &lt;element name="WirelessType" type="{}WirelessTypeValues" maxOccurs="3" minOccurs="0"/>
41
 *         &lt;element name="HardDriveSize" type="{}MemorySizeDimension" minOccurs="0"/>
42
 *         &lt;element name="SoftwareIncluded" type="{}LongStringNotNull" minOccurs="0"/>
43
 *         &lt;element name="MemorySlotsAvailable" type="{}StringNotNull" minOccurs="0"/>
44
 *         &lt;element name="ProcessorBrand" type="{}FortyStringNotNull" minOccurs="0"/>
45
 *         &lt;element name="ProcessorSpeed" type="{}FrequencyDimension" minOccurs="0"/>
46
 *         &lt;element name="ProcessorType" type="{}ProcessorTypeValues" minOccurs="0"/>
47
 *         &lt;element name="ProcessorCount" type="{http://www.w3.org/2001/XMLSchema}positiveInteger" minOccurs="0"/>
48
 *         &lt;element name="ROMSize" type="{}MemorySizeDimension" minOccurs="0"/>
49
 *         &lt;element name="ScreenSize" type="{}LengthDimension" minOccurs="0"/>
50
 *         &lt;element name="AdditionalFeatures" type="{}LongStringNotNull" minOccurs="0"/>
51
 *         &lt;element name="PDABaseModel" type="{}StringNotNull" maxOccurs="5" minOccurs="0"/>
52
 *       &lt;/sequence>
53
 *     &lt;/restriction>
54
 *   &lt;/complexContent>
55
 * &lt;/complexType>
56
 * </pre>
57
 * 
58
 * 
59
 */
60
@XmlAccessorType(XmlAccessType.FIELD)
61
@XmlType(name = "", propOrder = {
62
    "computerMemoryType",
63
    "ramSize",
64
    "powerSource",
65
    "screenResolution",
66
    "colorScreen",
67
    "operatingSystem",
68
    "wirelessType",
69
    "hardDriveSize",
70
    "softwareIncluded",
71
    "memorySlotsAvailable",
72
    "processorBrand",
73
    "processorSpeed",
74
    "processorType",
75
    "processorCount",
76
    "romSize",
77
    "screenSize",
78
    "additionalFeatures",
79
    "pdaBaseModel"
80
})
81
@XmlRootElement(name = "PDA")
82
public class PDA {
83
 
84
    @XmlElement(name = "ComputerMemoryType", required = true)
85
    protected List<String> computerMemoryType;
86
    @XmlElement(name = "RAMSize", required = true)
87
    protected MemorySizeDimension ramSize;
88
    @XmlElement(name = "PowerSource")
89
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
90
    protected String powerSource;
91
    @XmlElement(name = "ScreenResolution", required = true)
92
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
93
    protected String screenResolution;
94
    @XmlElement(name = "ColorScreen")
95
    protected boolean colorScreen;
96
    @XmlElement(name = "OperatingSystem")
97
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
98
    protected List<String> operatingSystem;
99
    @XmlElement(name = "WirelessType")
100
    protected List<String> wirelessType;
101
    @XmlElement(name = "HardDriveSize")
102
    protected MemorySizeDimension hardDriveSize;
103
    @XmlElement(name = "SoftwareIncluded")
104
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
105
    protected String softwareIncluded;
106
    @XmlElement(name = "MemorySlotsAvailable")
107
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
108
    protected String memorySlotsAvailable;
109
    @XmlElement(name = "ProcessorBrand")
110
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
111
    protected String processorBrand;
112
    @XmlElement(name = "ProcessorSpeed")
113
    protected FrequencyDimension processorSpeed;
114
    @XmlElement(name = "ProcessorType")
115
    protected String processorType;
116
    @XmlElement(name = "ProcessorCount")
117
    @XmlSchemaType(name = "positiveInteger")
118
    protected BigInteger processorCount;
119
    @XmlElement(name = "ROMSize")
120
    protected MemorySizeDimension romSize;
121
    @XmlElement(name = "ScreenSize")
122
    protected LengthDimension screenSize;
123
    @XmlElement(name = "AdditionalFeatures")
124
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
125
    protected String additionalFeatures;
126
    @XmlElement(name = "PDABaseModel")
127
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
128
    protected List<String> pdaBaseModel;
129
 
130
    /**
131
     * Gets the value of the computerMemoryType property.
132
     * 
133
     * <p>
134
     * This accessor method returns a reference to the live list,
135
     * not a snapshot. Therefore any modification you make to the
136
     * returned list will be present inside the JAXB object.
137
     * This is why there is not a <CODE>set</CODE> method for the computerMemoryType property.
138
     * 
139
     * <p>
140
     * For example, to add a new item, do as follows:
141
     * <pre>
142
     *    getComputerMemoryType().add(newItem);
143
     * </pre>
144
     * 
145
     * 
146
     * <p>
147
     * Objects of the following type(s) are allowed in the list
148
     * {@link String }
149
     * 
150
     * 
151
     */
152
    public List<String> getComputerMemoryType() {
153
        if (computerMemoryType == null) {
154
            computerMemoryType = new ArrayList<String>();
155
        }
156
        return this.computerMemoryType;
157
    }
158
 
159
    /**
160
     * Gets the value of the ramSize property.
161
     * 
162
     * @return
163
     *     possible object is
164
     *     {@link MemorySizeDimension }
165
     *     
166
     */
167
    public MemorySizeDimension getRAMSize() {
168
        return ramSize;
169
    }
170
 
171
    /**
172
     * Sets the value of the ramSize property.
173
     * 
174
     * @param value
175
     *     allowed object is
176
     *     {@link MemorySizeDimension }
177
     *     
178
     */
179
    public void setRAMSize(MemorySizeDimension value) {
180
        this.ramSize = value;
181
    }
182
 
183
    /**
184
     * Gets the value of the powerSource property.
185
     * 
186
     * @return
187
     *     possible object is
188
     *     {@link String }
189
     *     
190
     */
191
    public String getPowerSource() {
192
        return powerSource;
193
    }
194
 
195
    /**
196
     * Sets the value of the powerSource property.
197
     * 
198
     * @param value
199
     *     allowed object is
200
     *     {@link String }
201
     *     
202
     */
203
    public void setPowerSource(String value) {
204
        this.powerSource = value;
205
    }
206
 
207
    /**
208
     * Gets the value of the screenResolution property.
209
     * 
210
     * @return
211
     *     possible object is
212
     *     {@link String }
213
     *     
214
     */
215
    public String getScreenResolution() {
216
        return screenResolution;
217
    }
218
 
219
    /**
220
     * Sets the value of the screenResolution property.
221
     * 
222
     * @param value
223
     *     allowed object is
224
     *     {@link String }
225
     *     
226
     */
227
    public void setScreenResolution(String value) {
228
        this.screenResolution = value;
229
    }
230
 
231
    /**
232
     * Gets the value of the colorScreen property.
233
     * 
234
     */
235
    public boolean isColorScreen() {
236
        return colorScreen;
237
    }
238
 
239
    /**
240
     * Sets the value of the colorScreen property.
241
     * 
242
     */
243
    public void setColorScreen(boolean value) {
244
        this.colorScreen = value;
245
    }
246
 
247
    /**
248
     * Gets the value of the operatingSystem property.
249
     * 
250
     * <p>
251
     * This accessor method returns a reference to the live list,
252
     * not a snapshot. Therefore any modification you make to the
253
     * returned list will be present inside the JAXB object.
254
     * This is why there is not a <CODE>set</CODE> method for the operatingSystem property.
255
     * 
256
     * <p>
257
     * For example, to add a new item, do as follows:
258
     * <pre>
259
     *    getOperatingSystem().add(newItem);
260
     * </pre>
261
     * 
262
     * 
263
     * <p>
264
     * Objects of the following type(s) are allowed in the list
265
     * {@link String }
266
     * 
267
     * 
268
     */
269
    public List<String> getOperatingSystem() {
270
        if (operatingSystem == null) {
271
            operatingSystem = new ArrayList<String>();
272
        }
273
        return this.operatingSystem;
274
    }
275
 
276
    /**
277
     * Gets the value of the wirelessType property.
278
     * 
279
     * <p>
280
     * This accessor method returns a reference to the live list,
281
     * not a snapshot. Therefore any modification you make to the
282
     * returned list will be present inside the JAXB object.
283
     * This is why there is not a <CODE>set</CODE> method for the wirelessType property.
284
     * 
285
     * <p>
286
     * For example, to add a new item, do as follows:
287
     * <pre>
288
     *    getWirelessType().add(newItem);
289
     * </pre>
290
     * 
291
     * 
292
     * <p>
293
     * Objects of the following type(s) are allowed in the list
294
     * {@link String }
295
     * 
296
     * 
297
     */
298
    public List<String> getWirelessType() {
299
        if (wirelessType == null) {
300
            wirelessType = new ArrayList<String>();
301
        }
302
        return this.wirelessType;
303
    }
304
 
305
    /**
306
     * Gets the value of the hardDriveSize property.
307
     * 
308
     * @return
309
     *     possible object is
310
     *     {@link MemorySizeDimension }
311
     *     
312
     */
313
    public MemorySizeDimension getHardDriveSize() {
314
        return hardDriveSize;
315
    }
316
 
317
    /**
318
     * Sets the value of the hardDriveSize property.
319
     * 
320
     * @param value
321
     *     allowed object is
322
     *     {@link MemorySizeDimension }
323
     *     
324
     */
325
    public void setHardDriveSize(MemorySizeDimension value) {
326
        this.hardDriveSize = value;
327
    }
328
 
329
    /**
330
     * Gets the value of the softwareIncluded property.
331
     * 
332
     * @return
333
     *     possible object is
334
     *     {@link String }
335
     *     
336
     */
337
    public String getSoftwareIncluded() {
338
        return softwareIncluded;
339
    }
340
 
341
    /**
342
     * Sets the value of the softwareIncluded property.
343
     * 
344
     * @param value
345
     *     allowed object is
346
     *     {@link String }
347
     *     
348
     */
349
    public void setSoftwareIncluded(String value) {
350
        this.softwareIncluded = value;
351
    }
352
 
353
    /**
354
     * Gets the value of the memorySlotsAvailable property.
355
     * 
356
     * @return
357
     *     possible object is
358
     *     {@link String }
359
     *     
360
     */
361
    public String getMemorySlotsAvailable() {
362
        return memorySlotsAvailable;
363
    }
364
 
365
    /**
366
     * Sets the value of the memorySlotsAvailable property.
367
     * 
368
     * @param value
369
     *     allowed object is
370
     *     {@link String }
371
     *     
372
     */
373
    public void setMemorySlotsAvailable(String value) {
374
        this.memorySlotsAvailable = value;
375
    }
376
 
377
    /**
378
     * Gets the value of the processorBrand property.
379
     * 
380
     * @return
381
     *     possible object is
382
     *     {@link String }
383
     *     
384
     */
385
    public String getProcessorBrand() {
386
        return processorBrand;
387
    }
388
 
389
    /**
390
     * Sets the value of the processorBrand property.
391
     * 
392
     * @param value
393
     *     allowed object is
394
     *     {@link String }
395
     *     
396
     */
397
    public void setProcessorBrand(String value) {
398
        this.processorBrand = value;
399
    }
400
 
401
    /**
402
     * Gets the value of the processorSpeed property.
403
     * 
404
     * @return
405
     *     possible object is
406
     *     {@link FrequencyDimension }
407
     *     
408
     */
409
    public FrequencyDimension getProcessorSpeed() {
410
        return processorSpeed;
411
    }
412
 
413
    /**
414
     * Sets the value of the processorSpeed property.
415
     * 
416
     * @param value
417
     *     allowed object is
418
     *     {@link FrequencyDimension }
419
     *     
420
     */
421
    public void setProcessorSpeed(FrequencyDimension value) {
422
        this.processorSpeed = value;
423
    }
424
 
425
    /**
426
     * Gets the value of the processorType property.
427
     * 
428
     * @return
429
     *     possible object is
430
     *     {@link String }
431
     *     
432
     */
433
    public String getProcessorType() {
434
        return processorType;
435
    }
436
 
437
    /**
438
     * Sets the value of the processorType property.
439
     * 
440
     * @param value
441
     *     allowed object is
442
     *     {@link String }
443
     *     
444
     */
445
    public void setProcessorType(String value) {
446
        this.processorType = value;
447
    }
448
 
449
    /**
450
     * Gets the value of the processorCount property.
451
     * 
452
     * @return
453
     *     possible object is
454
     *     {@link BigInteger }
455
     *     
456
     */
457
    public BigInteger getProcessorCount() {
458
        return processorCount;
459
    }
460
 
461
    /**
462
     * Sets the value of the processorCount property.
463
     * 
464
     * @param value
465
     *     allowed object is
466
     *     {@link BigInteger }
467
     *     
468
     */
469
    public void setProcessorCount(BigInteger value) {
470
        this.processorCount = value;
471
    }
472
 
473
    /**
474
     * Gets the value of the romSize property.
475
     * 
476
     * @return
477
     *     possible object is
478
     *     {@link MemorySizeDimension }
479
     *     
480
     */
481
    public MemorySizeDimension getROMSize() {
482
        return romSize;
483
    }
484
 
485
    /**
486
     * Sets the value of the romSize property.
487
     * 
488
     * @param value
489
     *     allowed object is
490
     *     {@link MemorySizeDimension }
491
     *     
492
     */
493
    public void setROMSize(MemorySizeDimension value) {
494
        this.romSize = value;
495
    }
496
 
497
    /**
498
     * Gets the value of the screenSize property.
499
     * 
500
     * @return
501
     *     possible object is
502
     *     {@link LengthDimension }
503
     *     
504
     */
505
    public LengthDimension getScreenSize() {
506
        return screenSize;
507
    }
508
 
509
    /**
510
     * Sets the value of the screenSize property.
511
     * 
512
     * @param value
513
     *     allowed object is
514
     *     {@link LengthDimension }
515
     *     
516
     */
517
    public void setScreenSize(LengthDimension value) {
518
        this.screenSize = value;
519
    }
520
 
521
    /**
522
     * Gets the value of the additionalFeatures property.
523
     * 
524
     * @return
525
     *     possible object is
526
     *     {@link String }
527
     *     
528
     */
529
    public String getAdditionalFeatures() {
530
        return additionalFeatures;
531
    }
532
 
533
    /**
534
     * Sets the value of the additionalFeatures property.
535
     * 
536
     * @param value
537
     *     allowed object is
538
     *     {@link String }
539
     *     
540
     */
541
    public void setAdditionalFeatures(String value) {
542
        this.additionalFeatures = value;
543
    }
544
 
545
    /**
546
     * Gets the value of the pdaBaseModel property.
547
     * 
548
     * <p>
549
     * This accessor method returns a reference to the live list,
550
     * not a snapshot. Therefore any modification you make to the
551
     * returned list will be present inside the JAXB object.
552
     * This is why there is not a <CODE>set</CODE> method for the pdaBaseModel property.
553
     * 
554
     * <p>
555
     * For example, to add a new item, do as follows:
556
     * <pre>
557
     *    getPDABaseModel().add(newItem);
558
     * </pre>
559
     * 
560
     * 
561
     * <p>
562
     * Objects of the following type(s) are allowed in the list
563
     * {@link String }
564
     * 
565
     * 
566
     */
567
    public List<String> getPDABaseModel() {
568
        if (pdaBaseModel == null) {
569
            pdaBaseModel = new ArrayList<String>();
570
        }
571
        return this.pdaBaseModel;
572
    }
573
 
574
}