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.XmlType;
17
import javax.xml.bind.annotation.adapters.NormalizedStringAdapter;
18
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
19
 
20
 
21
/**
22
 * <p>Java class for anonymous complex type.
23
 * 
24
 * <p>The following schema fragment specifies the expected content contained within this class.
25
 * 
26
 * <pre>
27
 * &lt;complexType>
28
 *   &lt;complexContent>
29
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
30
 *       &lt;sequence>
31
 *         &lt;element ref="{}VariationData" minOccurs="0"/>
32
 *         &lt;element ref="{}AdditionalFeatures" minOccurs="0"/>
33
 *         &lt;element ref="{}BuiltInMicrophone" minOccurs="0"/>
34
 *         &lt;element ref="{}DeviceHardwareCompatability" minOccurs="0"/>
35
 *         &lt;element ref="{}DeviceSoftwareCompatability" minOccurs="0"/>
36
 *         &lt;element ref="{}HeadphoneStyle" minOccurs="0"/>
37
 *         &lt;element ref="{}InputDeviceDesignStyle" minOccurs="0"/>
38
 *         &lt;element ref="{}InputDeviceInterfaceTechnology" minOccurs="0"/>
39
 *         &lt;element ref="{}ModelNumber" minOccurs="0"/>
40
 *         &lt;element ref="{}NoiseCanceling" minOccurs="0"/>
41
 *         &lt;element ref="{}NumberOfButtons" minOccurs="0"/>
42
 *         &lt;element ref="{}PresentationRemoteLaserColor" minOccurs="0"/>
43
 *         &lt;element ref="{}PresentationRemoteMemory" minOccurs="0"/>
44
 *         &lt;element ref="{}PresentationRemoteOperatingDistance" minOccurs="0"/>
45
 *         &lt;element ref="{}PrimaryHeadphoneUse" minOccurs="0"/>
46
 *         &lt;element ref="{}TrackingMethod" minOccurs="0"/>
47
 *       &lt;/sequence>
48
 *     &lt;/restriction>
49
 *   &lt;/complexContent>
50
 * &lt;/complexType>
51
 * </pre>
52
 * 
53
 * 
54
 */
55
@XmlAccessorType(XmlAccessType.FIELD)
56
@XmlType(name = "", propOrder = {
57
    "variationData",
58
    "additionalFeatures",
59
    "builtInMicrophone",
60
    "deviceHardwareCompatability",
61
    "deviceSoftwareCompatability",
62
    "headphoneStyle",
63
    "inputDeviceDesignStyle",
64
    "inputDeviceInterfaceTechnology",
65
    "modelNumber",
66
    "noiseCanceling",
67
    "numberOfButtons",
68
    "presentationRemoteLaserColor",
69
    "presentationRemoteMemory",
70
    "presentationRemoteOperatingDistance",
71
    "primaryHeadphoneUse",
72
    "trackingMethod"
73
})
74
@XmlRootElement(name = "ComputerInputDevice")
75
public class ComputerInputDevice {
76
 
77
    @XmlElement(name = "VariationData")
78
    protected VariationData variationData;
79
    @XmlElement(name = "AdditionalFeatures")
80
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
81
    protected String additionalFeatures;
82
    @XmlElement(name = "BuiltInMicrophone")
83
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
84
    protected String builtInMicrophone;
85
    @XmlElement(name = "DeviceHardwareCompatability")
86
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
87
    protected String deviceHardwareCompatability;
88
    @XmlElement(name = "DeviceSoftwareCompatability")
89
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
90
    protected String deviceSoftwareCompatability;
91
    @XmlElement(name = "HeadphoneStyle")
92
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
93
    protected String headphoneStyle;
94
    @XmlElement(name = "InputDeviceDesignStyle")
95
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
96
    protected String inputDeviceDesignStyle;
97
    @XmlElement(name = "InputDeviceInterfaceTechnology")
98
    protected String inputDeviceInterfaceTechnology;
99
    @XmlElement(name = "ModelNumber")
100
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
101
    protected String modelNumber;
102
    @XmlElement(name = "NoiseCanceling")
103
    protected String noiseCanceling;
104
    @XmlElement(name = "NumberOfButtons")
105
    protected BigInteger numberOfButtons;
106
    @XmlElement(name = "PresentationRemoteLaserColor")
107
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
108
    protected String presentationRemoteLaserColor;
109
    @XmlElement(name = "PresentationRemoteMemory")
110
    protected MemorySizeFiveDigitDimension presentationRemoteMemory;
111
    @XmlElement(name = "PresentationRemoteOperatingDistance")
112
    protected LengthFiveDigitDimension presentationRemoteOperatingDistance;
113
    @XmlElement(name = "PrimaryHeadphoneUse")
114
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
115
    protected String primaryHeadphoneUse;
116
    @XmlElement(name = "TrackingMethod")
117
    protected String trackingMethod;
118
 
119
    /**
120
     * Gets the value of the variationData property.
121
     * 
122
     * @return
123
     *     possible object is
124
     *     {@link VariationData }
125
     *     
126
     */
127
    public VariationData getVariationData() {
128
        return variationData;
129
    }
130
 
131
    /**
132
     * Sets the value of the variationData property.
133
     * 
134
     * @param value
135
     *     allowed object is
136
     *     {@link VariationData }
137
     *     
138
     */
139
    public void setVariationData(VariationData value) {
140
        this.variationData = value;
141
    }
142
 
143
    /**
144
     * Gets the value of the additionalFeatures property.
145
     * 
146
     * @return
147
     *     possible object is
148
     *     {@link String }
149
     *     
150
     */
151
    public String getAdditionalFeatures() {
152
        return additionalFeatures;
153
    }
154
 
155
    /**
156
     * Sets the value of the additionalFeatures property.
157
     * 
158
     * @param value
159
     *     allowed object is
160
     *     {@link String }
161
     *     
162
     */
163
    public void setAdditionalFeatures(String value) {
164
        this.additionalFeatures = value;
165
    }
166
 
167
    /**
168
     * Gets the value of the builtInMicrophone property.
169
     * 
170
     * @return
171
     *     possible object is
172
     *     {@link String }
173
     *     
174
     */
175
    public String getBuiltInMicrophone() {
176
        return builtInMicrophone;
177
    }
178
 
179
    /**
180
     * Sets the value of the builtInMicrophone property.
181
     * 
182
     * @param value
183
     *     allowed object is
184
     *     {@link String }
185
     *     
186
     */
187
    public void setBuiltInMicrophone(String value) {
188
        this.builtInMicrophone = value;
189
    }
190
 
191
    /**
192
     * Gets the value of the deviceHardwareCompatability property.
193
     * 
194
     * @return
195
     *     possible object is
196
     *     {@link String }
197
     *     
198
     */
199
    public String getDeviceHardwareCompatability() {
200
        return deviceHardwareCompatability;
201
    }
202
 
203
    /**
204
     * Sets the value of the deviceHardwareCompatability property.
205
     * 
206
     * @param value
207
     *     allowed object is
208
     *     {@link String }
209
     *     
210
     */
211
    public void setDeviceHardwareCompatability(String value) {
212
        this.deviceHardwareCompatability = value;
213
    }
214
 
215
    /**
216
     * Gets the value of the deviceSoftwareCompatability property.
217
     * 
218
     * @return
219
     *     possible object is
220
     *     {@link String }
221
     *     
222
     */
223
    public String getDeviceSoftwareCompatability() {
224
        return deviceSoftwareCompatability;
225
    }
226
 
227
    /**
228
     * Sets the value of the deviceSoftwareCompatability property.
229
     * 
230
     * @param value
231
     *     allowed object is
232
     *     {@link String }
233
     *     
234
     */
235
    public void setDeviceSoftwareCompatability(String value) {
236
        this.deviceSoftwareCompatability = value;
237
    }
238
 
239
    /**
240
     * Gets the value of the headphoneStyle property.
241
     * 
242
     * @return
243
     *     possible object is
244
     *     {@link String }
245
     *     
246
     */
247
    public String getHeadphoneStyle() {
248
        return headphoneStyle;
249
    }
250
 
251
    /**
252
     * Sets the value of the headphoneStyle property.
253
     * 
254
     * @param value
255
     *     allowed object is
256
     *     {@link String }
257
     *     
258
     */
259
    public void setHeadphoneStyle(String value) {
260
        this.headphoneStyle = value;
261
    }
262
 
263
    /**
264
     * Gets the value of the inputDeviceDesignStyle property.
265
     * 
266
     * @return
267
     *     possible object is
268
     *     {@link String }
269
     *     
270
     */
271
    public String getInputDeviceDesignStyle() {
272
        return inputDeviceDesignStyle;
273
    }
274
 
275
    /**
276
     * Sets the value of the inputDeviceDesignStyle property.
277
     * 
278
     * @param value
279
     *     allowed object is
280
     *     {@link String }
281
     *     
282
     */
283
    public void setInputDeviceDesignStyle(String value) {
284
        this.inputDeviceDesignStyle = value;
285
    }
286
 
287
    /**
288
     * Gets the value of the inputDeviceInterfaceTechnology property.
289
     * 
290
     * @return
291
     *     possible object is
292
     *     {@link String }
293
     *     
294
     */
295
    public String getInputDeviceInterfaceTechnology() {
296
        return inputDeviceInterfaceTechnology;
297
    }
298
 
299
    /**
300
     * Sets the value of the inputDeviceInterfaceTechnology property.
301
     * 
302
     * @param value
303
     *     allowed object is
304
     *     {@link String }
305
     *     
306
     */
307
    public void setInputDeviceInterfaceTechnology(String value) {
308
        this.inputDeviceInterfaceTechnology = value;
309
    }
310
 
311
    /**
312
     * Gets the value of the modelNumber property.
313
     * 
314
     * @return
315
     *     possible object is
316
     *     {@link String }
317
     *     
318
     */
319
    public String getModelNumber() {
320
        return modelNumber;
321
    }
322
 
323
    /**
324
     * Sets the value of the modelNumber property.
325
     * 
326
     * @param value
327
     *     allowed object is
328
     *     {@link String }
329
     *     
330
     */
331
    public void setModelNumber(String value) {
332
        this.modelNumber = value;
333
    }
334
 
335
    /**
336
     * Gets the value of the noiseCanceling property.
337
     * 
338
     * @return
339
     *     possible object is
340
     *     {@link String }
341
     *     
342
     */
343
    public String getNoiseCanceling() {
344
        return noiseCanceling;
345
    }
346
 
347
    /**
348
     * Sets the value of the noiseCanceling property.
349
     * 
350
     * @param value
351
     *     allowed object is
352
     *     {@link String }
353
     *     
354
     */
355
    public void setNoiseCanceling(String value) {
356
        this.noiseCanceling = value;
357
    }
358
 
359
    /**
360
     * Gets the value of the numberOfButtons property.
361
     * 
362
     * @return
363
     *     possible object is
364
     *     {@link BigInteger }
365
     *     
366
     */
367
    public BigInteger getNumberOfButtons() {
368
        return numberOfButtons;
369
    }
370
 
371
    /**
372
     * Sets the value of the numberOfButtons property.
373
     * 
374
     * @param value
375
     *     allowed object is
376
     *     {@link BigInteger }
377
     *     
378
     */
379
    public void setNumberOfButtons(BigInteger value) {
380
        this.numberOfButtons = value;
381
    }
382
 
383
    /**
384
     * Gets the value of the presentationRemoteLaserColor property.
385
     * 
386
     * @return
387
     *     possible object is
388
     *     {@link String }
389
     *     
390
     */
391
    public String getPresentationRemoteLaserColor() {
392
        return presentationRemoteLaserColor;
393
    }
394
 
395
    /**
396
     * Sets the value of the presentationRemoteLaserColor property.
397
     * 
398
     * @param value
399
     *     allowed object is
400
     *     {@link String }
401
     *     
402
     */
403
    public void setPresentationRemoteLaserColor(String value) {
404
        this.presentationRemoteLaserColor = value;
405
    }
406
 
407
    /**
408
     * Gets the value of the presentationRemoteMemory property.
409
     * 
410
     * @return
411
     *     possible object is
412
     *     {@link MemorySizeFiveDigitDimension }
413
     *     
414
     */
415
    public MemorySizeFiveDigitDimension getPresentationRemoteMemory() {
416
        return presentationRemoteMemory;
417
    }
418
 
419
    /**
420
     * Sets the value of the presentationRemoteMemory property.
421
     * 
422
     * @param value
423
     *     allowed object is
424
     *     {@link MemorySizeFiveDigitDimension }
425
     *     
426
     */
427
    public void setPresentationRemoteMemory(MemorySizeFiveDigitDimension value) {
428
        this.presentationRemoteMemory = value;
429
    }
430
 
431
    /**
432
     * Gets the value of the presentationRemoteOperatingDistance property.
433
     * 
434
     * @return
435
     *     possible object is
436
     *     {@link LengthFiveDigitDimension }
437
     *     
438
     */
439
    public LengthFiveDigitDimension getPresentationRemoteOperatingDistance() {
440
        return presentationRemoteOperatingDistance;
441
    }
442
 
443
    /**
444
     * Sets the value of the presentationRemoteOperatingDistance property.
445
     * 
446
     * @param value
447
     *     allowed object is
448
     *     {@link LengthFiveDigitDimension }
449
     *     
450
     */
451
    public void setPresentationRemoteOperatingDistance(LengthFiveDigitDimension value) {
452
        this.presentationRemoteOperatingDistance = value;
453
    }
454
 
455
    /**
456
     * Gets the value of the primaryHeadphoneUse property.
457
     * 
458
     * @return
459
     *     possible object is
460
     *     {@link String }
461
     *     
462
     */
463
    public String getPrimaryHeadphoneUse() {
464
        return primaryHeadphoneUse;
465
    }
466
 
467
    /**
468
     * Sets the value of the primaryHeadphoneUse property.
469
     * 
470
     * @param value
471
     *     allowed object is
472
     *     {@link String }
473
     *     
474
     */
475
    public void setPrimaryHeadphoneUse(String value) {
476
        this.primaryHeadphoneUse = value;
477
    }
478
 
479
    /**
480
     * Gets the value of the trackingMethod property.
481
     * 
482
     * @return
483
     *     possible object is
484
     *     {@link String }
485
     *     
486
     */
487
    public String getTrackingMethod() {
488
        return trackingMethod;
489
    }
490
 
491
    /**
492
     * Sets the value of the trackingMethod property.
493
     * 
494
     * @param value
495
     *     allowed object is
496
     *     {@link String }
497
     *     
498
     */
499
    public void setTrackingMethod(String value) {
500
        this.trackingMethod = value;
501
    }
502
 
503
}