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.BigDecimal;
12
import java.math.BigInteger;
13
import javax.xml.bind.annotation.XmlAccessType;
14
import javax.xml.bind.annotation.XmlAccessorType;
15
import javax.xml.bind.annotation.XmlElement;
16
import javax.xml.bind.annotation.XmlRootElement;
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="{}VariationData" minOccurs="0"/>
33
 *         &lt;element ref="{}AdditionalFeatures" minOccurs="0"/>
34
 *         &lt;element ref="{}BundledSoftware" minOccurs="0"/>
35
 *         &lt;element ref="{}Channels" minOccurs="0"/>
36
 *         &lt;element ref="{}LineIn" minOccurs="0"/>
37
 *         &lt;element ref="{}ModelNumber" minOccurs="0"/>
38
 *         &lt;element ref="{}OpticalIn" minOccurs="0"/>
39
 *         &lt;element ref="{}OpticalOut" minOccurs="0"/>
40
 *         &lt;element ref="{}SampleRate" minOccurs="0"/>
41
 *         &lt;element ref="{}SoundCardInterface" minOccurs="0"/>
42
 *         &lt;element ref="{}SoundCardMinSystemRequirements" minOccurs="0"/>
43
 *         &lt;element ref="{}SpeakerOut" minOccurs="0"/>
44
 *         &lt;element ref="{}Voltage" minOccurs="0"/>
45
 *         &lt;element ref="{}Wattage" minOccurs="0"/>
46
 *       &lt;/sequence>
47
 *     &lt;/restriction>
48
 *   &lt;/complexContent>
49
 * &lt;/complexType>
50
 * </pre>
51
 * 
52
 * 
53
 */
54
@XmlAccessorType(XmlAccessType.FIELD)
55
@XmlType(name = "", propOrder = {
56
    "variationData",
57
    "additionalFeatures",
58
    "bundledSoftware",
59
    "channels",
60
    "lineIn",
61
    "modelNumber",
62
    "opticalIn",
63
    "opticalOut",
64
    "sampleRate",
65
    "soundCardInterface",
66
    "soundCardMinSystemRequirements",
67
    "speakerOut",
68
    "voltage",
69
    "wattage"
70
})
71
@XmlRootElement(name = "SoundCard")
72
public class SoundCard {
73
 
74
    @XmlElement(name = "VariationData")
75
    protected VariationData variationData;
76
    @XmlElement(name = "AdditionalFeatures")
77
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
78
    protected String additionalFeatures;
79
    @XmlElement(name = "BundledSoftware")
80
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
81
    protected String bundledSoftware;
82
    @XmlElement(name = "Channels")
83
    protected BigDecimal channels;
84
    @XmlElement(name = "LineIn")
85
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
86
    protected String lineIn;
87
    @XmlElement(name = "ModelNumber")
88
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
89
    protected String modelNumber;
90
    @XmlElement(name = "OpticalIn")
91
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
92
    protected String opticalIn;
93
    @XmlElement(name = "OpticalOut")
94
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
95
    protected String opticalOut;
96
    @XmlElement(name = "SampleRate")
97
    protected FrequencyThreeDigitIntegerDimension sampleRate;
98
    @XmlElement(name = "SoundCardInterface")
99
    protected SoundCardInterfaceTypeValues soundCardInterface;
100
    @XmlElement(name = "SoundCardMinSystemRequirements")
101
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
102
    protected String soundCardMinSystemRequirements;
103
    @XmlElement(name = "SpeakerOut")
104
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
105
    protected String speakerOut;
106
    @XmlElement(name = "Voltage")
107
    protected BigDecimal voltage;
108
    @XmlElement(name = "Wattage")
109
    protected BigInteger wattage;
110
 
111
    /**
112
     * Gets the value of the variationData property.
113
     * 
114
     * @return
115
     *     possible object is
116
     *     {@link VariationData }
117
     *     
118
     */
119
    public VariationData getVariationData() {
120
        return variationData;
121
    }
122
 
123
    /**
124
     * Sets the value of the variationData property.
125
     * 
126
     * @param value
127
     *     allowed object is
128
     *     {@link VariationData }
129
     *     
130
     */
131
    public void setVariationData(VariationData value) {
132
        this.variationData = value;
133
    }
134
 
135
    /**
136
     * Gets the value of the additionalFeatures property.
137
     * 
138
     * @return
139
     *     possible object is
140
     *     {@link String }
141
     *     
142
     */
143
    public String getAdditionalFeatures() {
144
        return additionalFeatures;
145
    }
146
 
147
    /**
148
     * Sets the value of the additionalFeatures property.
149
     * 
150
     * @param value
151
     *     allowed object is
152
     *     {@link String }
153
     *     
154
     */
155
    public void setAdditionalFeatures(String value) {
156
        this.additionalFeatures = value;
157
    }
158
 
159
    /**
160
     * Gets the value of the bundledSoftware property.
161
     * 
162
     * @return
163
     *     possible object is
164
     *     {@link String }
165
     *     
166
     */
167
    public String getBundledSoftware() {
168
        return bundledSoftware;
169
    }
170
 
171
    /**
172
     * Sets the value of the bundledSoftware property.
173
     * 
174
     * @param value
175
     *     allowed object is
176
     *     {@link String }
177
     *     
178
     */
179
    public void setBundledSoftware(String value) {
180
        this.bundledSoftware = value;
181
    }
182
 
183
    /**
184
     * Gets the value of the channels property.
185
     * 
186
     * @return
187
     *     possible object is
188
     *     {@link BigDecimal }
189
     *     
190
     */
191
    public BigDecimal getChannels() {
192
        return channels;
193
    }
194
 
195
    /**
196
     * Sets the value of the channels property.
197
     * 
198
     * @param value
199
     *     allowed object is
200
     *     {@link BigDecimal }
201
     *     
202
     */
203
    public void setChannels(BigDecimal value) {
204
        this.channels = value;
205
    }
206
 
207
    /**
208
     * Gets the value of the lineIn property.
209
     * 
210
     * @return
211
     *     possible object is
212
     *     {@link String }
213
     *     
214
     */
215
    public String getLineIn() {
216
        return lineIn;
217
    }
218
 
219
    /**
220
     * Sets the value of the lineIn property.
221
     * 
222
     * @param value
223
     *     allowed object is
224
     *     {@link String }
225
     *     
226
     */
227
    public void setLineIn(String value) {
228
        this.lineIn = value;
229
    }
230
 
231
    /**
232
     * Gets the value of the modelNumber property.
233
     * 
234
     * @return
235
     *     possible object is
236
     *     {@link String }
237
     *     
238
     */
239
    public String getModelNumber() {
240
        return modelNumber;
241
    }
242
 
243
    /**
244
     * Sets the value of the modelNumber property.
245
     * 
246
     * @param value
247
     *     allowed object is
248
     *     {@link String }
249
     *     
250
     */
251
    public void setModelNumber(String value) {
252
        this.modelNumber = value;
253
    }
254
 
255
    /**
256
     * Gets the value of the opticalIn property.
257
     * 
258
     * @return
259
     *     possible object is
260
     *     {@link String }
261
     *     
262
     */
263
    public String getOpticalIn() {
264
        return opticalIn;
265
    }
266
 
267
    /**
268
     * Sets the value of the opticalIn property.
269
     * 
270
     * @param value
271
     *     allowed object is
272
     *     {@link String }
273
     *     
274
     */
275
    public void setOpticalIn(String value) {
276
        this.opticalIn = value;
277
    }
278
 
279
    /**
280
     * Gets the value of the opticalOut property.
281
     * 
282
     * @return
283
     *     possible object is
284
     *     {@link String }
285
     *     
286
     */
287
    public String getOpticalOut() {
288
        return opticalOut;
289
    }
290
 
291
    /**
292
     * Sets the value of the opticalOut property.
293
     * 
294
     * @param value
295
     *     allowed object is
296
     *     {@link String }
297
     *     
298
     */
299
    public void setOpticalOut(String value) {
300
        this.opticalOut = value;
301
    }
302
 
303
    /**
304
     * Gets the value of the sampleRate property.
305
     * 
306
     * @return
307
     *     possible object is
308
     *     {@link FrequencyThreeDigitIntegerDimension }
309
     *     
310
     */
311
    public FrequencyThreeDigitIntegerDimension getSampleRate() {
312
        return sampleRate;
313
    }
314
 
315
    /**
316
     * Sets the value of the sampleRate property.
317
     * 
318
     * @param value
319
     *     allowed object is
320
     *     {@link FrequencyThreeDigitIntegerDimension }
321
     *     
322
     */
323
    public void setSampleRate(FrequencyThreeDigitIntegerDimension value) {
324
        this.sampleRate = value;
325
    }
326
 
327
    /**
328
     * Gets the value of the soundCardInterface property.
329
     * 
330
     * @return
331
     *     possible object is
332
     *     {@link SoundCardInterfaceTypeValues }
333
     *     
334
     */
335
    public SoundCardInterfaceTypeValues getSoundCardInterface() {
336
        return soundCardInterface;
337
    }
338
 
339
    /**
340
     * Sets the value of the soundCardInterface property.
341
     * 
342
     * @param value
343
     *     allowed object is
344
     *     {@link SoundCardInterfaceTypeValues }
345
     *     
346
     */
347
    public void setSoundCardInterface(SoundCardInterfaceTypeValues value) {
348
        this.soundCardInterface = value;
349
    }
350
 
351
    /**
352
     * Gets the value of the soundCardMinSystemRequirements property.
353
     * 
354
     * @return
355
     *     possible object is
356
     *     {@link String }
357
     *     
358
     */
359
    public String getSoundCardMinSystemRequirements() {
360
        return soundCardMinSystemRequirements;
361
    }
362
 
363
    /**
364
     * Sets the value of the soundCardMinSystemRequirements property.
365
     * 
366
     * @param value
367
     *     allowed object is
368
     *     {@link String }
369
     *     
370
     */
371
    public void setSoundCardMinSystemRequirements(String value) {
372
        this.soundCardMinSystemRequirements = value;
373
    }
374
 
375
    /**
376
     * Gets the value of the speakerOut property.
377
     * 
378
     * @return
379
     *     possible object is
380
     *     {@link String }
381
     *     
382
     */
383
    public String getSpeakerOut() {
384
        return speakerOut;
385
    }
386
 
387
    /**
388
     * Sets the value of the speakerOut property.
389
     * 
390
     * @param value
391
     *     allowed object is
392
     *     {@link String }
393
     *     
394
     */
395
    public void setSpeakerOut(String value) {
396
        this.speakerOut = value;
397
    }
398
 
399
    /**
400
     * Gets the value of the voltage property.
401
     * 
402
     * @return
403
     *     possible object is
404
     *     {@link BigDecimal }
405
     *     
406
     */
407
    public BigDecimal getVoltage() {
408
        return voltage;
409
    }
410
 
411
    /**
412
     * Sets the value of the voltage property.
413
     * 
414
     * @param value
415
     *     allowed object is
416
     *     {@link BigDecimal }
417
     *     
418
     */
419
    public void setVoltage(BigDecimal value) {
420
        this.voltage = value;
421
    }
422
 
423
    /**
424
     * Gets the value of the wattage property.
425
     * 
426
     * @return
427
     *     possible object is
428
     *     {@link BigInteger }
429
     *     
430
     */
431
    public BigInteger getWattage() {
432
        return wattage;
433
    }
434
 
435
    /**
436
     * Sets the value of the wattage property.
437
     * 
438
     * @param value
439
     *     allowed object is
440
     *     {@link BigInteger }
441
     *     
442
     */
443
    public void setWattage(BigInteger value) {
444
        this.wattage = value;
445
    }
446
 
447
}