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.BigDecimal;
12
import java.math.BigInteger;
13
import java.util.ArrayList;
14
import java.util.List;
15
import javax.xml.bind.annotation.XmlAccessType;
16
import javax.xml.bind.annotation.XmlAccessorType;
17
import javax.xml.bind.annotation.XmlElement;
18
import javax.xml.bind.annotation.XmlRootElement;
19
import javax.xml.bind.annotation.XmlSchemaType;
20
import javax.xml.bind.annotation.XmlType;
21
import javax.xml.bind.annotation.adapters.NormalizedStringAdapter;
22
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
23
 
24
 
25
/**
26
 * <p>Java class for anonymous complex type.
27
 * 
28
 * <p>The following schema fragment specifies the expected content contained within this class.
29
 * 
30
 * <pre>
31
 * &lt;complexType>
32
 *   &lt;complexContent>
33
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
34
 *       &lt;sequence>
35
 *         &lt;element ref="{}AmplifierType" minOccurs="0"/>
36
 *         &lt;element ref="{}BatteryCellType" minOccurs="0"/>
37
 *         &lt;element name="BatteryChargeCycles" type="{http://www.w3.org/2001/XMLSchema}positiveInteger" minOccurs="0"/>
38
 *         &lt;element ref="{}BatteryPower" minOccurs="0"/>
39
 *         &lt;element name="CableLength" type="{}LengthDimension" minOccurs="0"/>
40
 *         &lt;element ref="{}ControlType" minOccurs="0"/>
41
 *         &lt;element ref="{}FitType" minOccurs="0"/>
42
 *         &lt;element ref="{}HeadphoneEarcupMotion" minOccurs="0"/>
43
 *         &lt;element ref="{}NoiseReductionLevel" minOccurs="0"/>
44
 *         &lt;element ref="{}PowerPlugType" minOccurs="0"/>
45
 *         &lt;element name="PowerSource" type="{}FortyStringNotNull" minOccurs="0"/>
46
 *         &lt;element ref="{}Shape" minOccurs="0"/>
47
 *         &lt;element ref="{}TotalComponentInPorts" minOccurs="0"/>
48
 *         &lt;element name="WirelessTechnology" type="{}StringNotNull" maxOccurs="5" minOccurs="0"/>
49
 *       &lt;/sequence>
50
 *     &lt;/restriction>
51
 *   &lt;/complexContent>
52
 * &lt;/complexType>
53
 * </pre>
54
 * 
55
 * 
56
 */
57
@XmlAccessorType(XmlAccessType.FIELD)
58
@XmlType(name = "", propOrder = {
59
    "amplifierType",
60
    "batteryCellType",
61
    "batteryChargeCycles",
62
    "batteryPower",
63
    "cableLength",
64
    "controlType",
65
    "fitType",
66
    "headphoneEarcupMotion",
67
    "noiseReductionLevel",
68
    "powerPlugType",
69
    "powerSource",
70
    "shape",
71
    "totalComponentInPorts",
72
    "wirelessTechnology"
73
})
74
@XmlRootElement(name = "Headphones")
75
public class Headphones {
76
 
77
    @XmlElement(name = "AmplifierType")
78
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
79
    protected String amplifierType;
80
    @XmlElement(name = "BatteryCellType")
81
    protected BatteryCellTypeValues batteryCellType;
82
    @XmlElement(name = "BatteryChargeCycles")
83
    @XmlSchemaType(name = "positiveInteger")
84
    protected BigInteger batteryChargeCycles;
85
    @XmlElement(name = "BatteryPower")
86
    protected BatteryPowerIntegerDimension batteryPower;
87
    @XmlElement(name = "CableLength")
88
    protected LengthDimension cableLength;
89
    @XmlElement(name = "ControlType")
90
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
91
    protected String controlType;
92
    @XmlElement(name = "FitType")
93
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
94
    protected String fitType;
95
    @XmlElement(name = "HeadphoneEarcupMotion")
96
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
97
    protected String headphoneEarcupMotion;
98
    @XmlElement(name = "NoiseReductionLevel")
99
    protected BigDecimal noiseReductionLevel;
100
    @XmlElement(name = "PowerPlugType")
101
    protected PowerPlugType powerPlugType;
102
    @XmlElement(name = "PowerSource")
103
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
104
    protected String powerSource;
105
    @XmlElement(name = "Shape")
106
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
107
    protected String shape;
108
    @XmlElement(name = "TotalComponentInPorts")
109
    @XmlSchemaType(name = "positiveInteger")
110
    protected BigInteger totalComponentInPorts;
111
    @XmlElement(name = "WirelessTechnology")
112
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
113
    protected List<String> wirelessTechnology;
114
 
115
    /**
116
     * Gets the value of the amplifierType property.
117
     * 
118
     * @return
119
     *     possible object is
120
     *     {@link String }
121
     *     
122
     */
123
    public String getAmplifierType() {
124
        return amplifierType;
125
    }
126
 
127
    /**
128
     * Sets the value of the amplifierType property.
129
     * 
130
     * @param value
131
     *     allowed object is
132
     *     {@link String }
133
     *     
134
     */
135
    public void setAmplifierType(String value) {
136
        this.amplifierType = value;
137
    }
138
 
139
    /**
140
     * Gets the value of the batteryCellType property.
141
     * 
142
     * @return
143
     *     possible object is
144
     *     {@link BatteryCellTypeValues }
145
     *     
146
     */
147
    public BatteryCellTypeValues getBatteryCellType() {
148
        return batteryCellType;
149
    }
150
 
151
    /**
152
     * Sets the value of the batteryCellType property.
153
     * 
154
     * @param value
155
     *     allowed object is
156
     *     {@link BatteryCellTypeValues }
157
     *     
158
     */
159
    public void setBatteryCellType(BatteryCellTypeValues value) {
160
        this.batteryCellType = value;
161
    }
162
 
163
    /**
164
     * Gets the value of the batteryChargeCycles property.
165
     * 
166
     * @return
167
     *     possible object is
168
     *     {@link BigInteger }
169
     *     
170
     */
171
    public BigInteger getBatteryChargeCycles() {
172
        return batteryChargeCycles;
173
    }
174
 
175
    /**
176
     * Sets the value of the batteryChargeCycles property.
177
     * 
178
     * @param value
179
     *     allowed object is
180
     *     {@link BigInteger }
181
     *     
182
     */
183
    public void setBatteryChargeCycles(BigInteger value) {
184
        this.batteryChargeCycles = value;
185
    }
186
 
187
    /**
188
     * Gets the value of the batteryPower property.
189
     * 
190
     * @return
191
     *     possible object is
192
     *     {@link BatteryPowerIntegerDimension }
193
     *     
194
     */
195
    public BatteryPowerIntegerDimension getBatteryPower() {
196
        return batteryPower;
197
    }
198
 
199
    /**
200
     * Sets the value of the batteryPower property.
201
     * 
202
     * @param value
203
     *     allowed object is
204
     *     {@link BatteryPowerIntegerDimension }
205
     *     
206
     */
207
    public void setBatteryPower(BatteryPowerIntegerDimension value) {
208
        this.batteryPower = value;
209
    }
210
 
211
    /**
212
     * Gets the value of the cableLength property.
213
     * 
214
     * @return
215
     *     possible object is
216
     *     {@link LengthDimension }
217
     *     
218
     */
219
    public LengthDimension getCableLength() {
220
        return cableLength;
221
    }
222
 
223
    /**
224
     * Sets the value of the cableLength property.
225
     * 
226
     * @param value
227
     *     allowed object is
228
     *     {@link LengthDimension }
229
     *     
230
     */
231
    public void setCableLength(LengthDimension value) {
232
        this.cableLength = value;
233
    }
234
 
235
    /**
236
     * Gets the value of the controlType property.
237
     * 
238
     * @return
239
     *     possible object is
240
     *     {@link String }
241
     *     
242
     */
243
    public String getControlType() {
244
        return controlType;
245
    }
246
 
247
    /**
248
     * Sets the value of the controlType property.
249
     * 
250
     * @param value
251
     *     allowed object is
252
     *     {@link String }
253
     *     
254
     */
255
    public void setControlType(String value) {
256
        this.controlType = value;
257
    }
258
 
259
    /**
260
     * Gets the value of the fitType property.
261
     * 
262
     * @return
263
     *     possible object is
264
     *     {@link String }
265
     *     
266
     */
267
    public String getFitType() {
268
        return fitType;
269
    }
270
 
271
    /**
272
     * Sets the value of the fitType property.
273
     * 
274
     * @param value
275
     *     allowed object is
276
     *     {@link String }
277
     *     
278
     */
279
    public void setFitType(String value) {
280
        this.fitType = value;
281
    }
282
 
283
    /**
284
     * Gets the value of the headphoneEarcupMotion property.
285
     * 
286
     * @return
287
     *     possible object is
288
     *     {@link String }
289
     *     
290
     */
291
    public String getHeadphoneEarcupMotion() {
292
        return headphoneEarcupMotion;
293
    }
294
 
295
    /**
296
     * Sets the value of the headphoneEarcupMotion property.
297
     * 
298
     * @param value
299
     *     allowed object is
300
     *     {@link String }
301
     *     
302
     */
303
    public void setHeadphoneEarcupMotion(String value) {
304
        this.headphoneEarcupMotion = value;
305
    }
306
 
307
    /**
308
     * Gets the value of the noiseReductionLevel property.
309
     * 
310
     * @return
311
     *     possible object is
312
     *     {@link BigDecimal }
313
     *     
314
     */
315
    public BigDecimal getNoiseReductionLevel() {
316
        return noiseReductionLevel;
317
    }
318
 
319
    /**
320
     * Sets the value of the noiseReductionLevel property.
321
     * 
322
     * @param value
323
     *     allowed object is
324
     *     {@link BigDecimal }
325
     *     
326
     */
327
    public void setNoiseReductionLevel(BigDecimal value) {
328
        this.noiseReductionLevel = value;
329
    }
330
 
331
    /**
332
     * Gets the value of the powerPlugType property.
333
     * 
334
     * @return
335
     *     possible object is
336
     *     {@link PowerPlugType }
337
     *     
338
     */
339
    public PowerPlugType getPowerPlugType() {
340
        return powerPlugType;
341
    }
342
 
343
    /**
344
     * Sets the value of the powerPlugType property.
345
     * 
346
     * @param value
347
     *     allowed object is
348
     *     {@link PowerPlugType }
349
     *     
350
     */
351
    public void setPowerPlugType(PowerPlugType value) {
352
        this.powerPlugType = value;
353
    }
354
 
355
    /**
356
     * Gets the value of the powerSource property.
357
     * 
358
     * @return
359
     *     possible object is
360
     *     {@link String }
361
     *     
362
     */
363
    public String getPowerSource() {
364
        return powerSource;
365
    }
366
 
367
    /**
368
     * Sets the value of the powerSource property.
369
     * 
370
     * @param value
371
     *     allowed object is
372
     *     {@link String }
373
     *     
374
     */
375
    public void setPowerSource(String value) {
376
        this.powerSource = value;
377
    }
378
 
379
    /**
380
     * Gets the value of the shape property.
381
     * 
382
     * @return
383
     *     possible object is
384
     *     {@link String }
385
     *     
386
     */
387
    public String getShape() {
388
        return shape;
389
    }
390
 
391
    /**
392
     * Sets the value of the shape property.
393
     * 
394
     * @param value
395
     *     allowed object is
396
     *     {@link String }
397
     *     
398
     */
399
    public void setShape(String value) {
400
        this.shape = value;
401
    }
402
 
403
    /**
404
     * Gets the value of the totalComponentInPorts property.
405
     * 
406
     * @return
407
     *     possible object is
408
     *     {@link BigInteger }
409
     *     
410
     */
411
    public BigInteger getTotalComponentInPorts() {
412
        return totalComponentInPorts;
413
    }
414
 
415
    /**
416
     * Sets the value of the totalComponentInPorts property.
417
     * 
418
     * @param value
419
     *     allowed object is
420
     *     {@link BigInteger }
421
     *     
422
     */
423
    public void setTotalComponentInPorts(BigInteger value) {
424
        this.totalComponentInPorts = value;
425
    }
426
 
427
    /**
428
     * Gets the value of the wirelessTechnology property.
429
     * 
430
     * <p>
431
     * This accessor method returns a reference to the live list,
432
     * not a snapshot. Therefore any modification you make to the
433
     * returned list will be present inside the JAXB object.
434
     * This is why there is not a <CODE>set</CODE> method for the wirelessTechnology property.
435
     * 
436
     * <p>
437
     * For example, to add a new item, do as follows:
438
     * <pre>
439
     *    getWirelessTechnology().add(newItem);
440
     * </pre>
441
     * 
442
     * 
443
     * <p>
444
     * Objects of the following type(s) are allowed in the list
445
     * {@link String }
446
     * 
447
     * 
448
     */
449
    public List<String> getWirelessTechnology() {
450
        if (wirelessTechnology == null) {
451
            wirelessTechnology = new ArrayList<String>();
452
        }
453
        return this.wirelessTechnology;
454
    }
455
 
456
}