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.util.ArrayList;
12
import java.util.List;
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 name="ActiveSurfaceArea" type="{}StringNotNull" minOccurs="0"/>
33
 *         &lt;element name="WingArea" type="{}StringNotNull" minOccurs="0"/>
34
 *         &lt;element name="CollectionName" type="{}StringNotNull" minOccurs="0"/>
35
 *         &lt;element name="Genre" type="{}StringNotNull" minOccurs="0"/>
36
 *         &lt;element name="InitialPrintRunRarity" type="{}StringNotNull" minOccurs="0"/>
37
 *         &lt;element name="SpecificUsesForProduct" type="{}StringNotNull" minOccurs="0"/>
38
 *         &lt;element name="BrakeStyle" type="{}StringNotNull" minOccurs="0"/>
39
 *         &lt;element name="ControlType" type="{}StringNotNull" minOccurs="0"/>
40
 *         &lt;element name="CountryOfOrigin" type="{}CountryOfOriginType" minOccurs="0"/>
41
 *         &lt;element name="DriveSystem" type="{}StringNotNull" minOccurs="0"/>
42
 *         &lt;element name="EducationalObjective" type="{}StringNotNull" minOccurs="0"/>
43
 *         &lt;element name="FrameMaterialType" type="{}StringNotNull" minOccurs="0"/>
44
 *         &lt;element name="FuelCapacity" type="{}VolumeDimension" minOccurs="0"/>
45
 *         &lt;element name="FuelType" type="{}StringNotNull" minOccurs="0"/>
46
 *         &lt;element name="IsElectric" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
47
 *         &lt;element name="MaterialType" type="{}StringNotNull" minOccurs="0"/>
48
 *         &lt;element name="MaximumRange" type="{}LengthDimension" minOccurs="0"/>
49
 *         &lt;element name="MaximumSpeed" type="{}SpeedDimension" minOccurs="0"/>
50
 *         &lt;element name="MotorType" type="{}StringNotNull" minOccurs="0"/>
51
 *         &lt;element name="AnimalType" type="{}StringNotNull" minOccurs="0"/>
52
 *         &lt;element name="Publisher" type="{}StringNotNull" minOccurs="0"/>
53
 *         &lt;element name="RadioBandsSupported" type="{}StringNotNull" minOccurs="0"/>
54
 *         &lt;element name="RailType" type="{}StringNotNull" minOccurs="0"/>
55
 *         &lt;element name="Scale" type="{}StringNotNull" minOccurs="0"/>
56
 *         &lt;element name="SkillLevel" type="{}StringNotNull" minOccurs="0"/>
57
 *         &lt;element name="SuspensionType" type="{}StringNotNull" minOccurs="0"/>
58
 *         &lt;element name="ProductTheme" type="{}StringNotNull" minOccurs="0"/>
59
 *         &lt;element name="TireType" type="{}StringNotNull" minOccurs="0"/>
60
 *         &lt;element name="ToyAwardName" type="{}ToyAwardType" maxOccurs="5" minOccurs="0"/>
61
 *         &lt;element name="WheelDiameter" type="{}LengthDimension" minOccurs="0"/>
62
 *         &lt;element name="WheelType" type="{}StringNotNull" minOccurs="0"/>
63
 *       &lt;/sequence>
64
 *     &lt;/restriction>
65
 *   &lt;/complexContent>
66
 * &lt;/complexType>
67
 * </pre>
68
 * 
69
 * 
70
 */
71
@XmlAccessorType(XmlAccessType.FIELD)
72
@XmlType(name = "", propOrder = {
73
    "activeSurfaceArea",
74
    "wingArea",
75
    "collectionName",
76
    "genre",
77
    "initialPrintRunRarity",
78
    "specificUsesForProduct",
79
    "brakeStyle",
80
    "controlType",
81
    "countryOfOrigin",
82
    "driveSystem",
83
    "educationalObjective",
84
    "frameMaterialType",
85
    "fuelCapacity",
86
    "fuelType",
87
    "isElectric",
88
    "materialType",
89
    "maximumRange",
90
    "maximumSpeed",
91
    "motorType",
92
    "animalType",
93
    "publisher",
94
    "radioBandsSupported",
95
    "railType",
96
    "scale",
97
    "skillLevel",
98
    "suspensionType",
99
    "productTheme",
100
    "tireType",
101
    "toyAwardName",
102
    "wheelDiameter",
103
    "wheelType"
104
})
105
@XmlRootElement(name = "Hobbies")
106
public class Hobbies {
107
 
108
    @XmlElement(name = "ActiveSurfaceArea")
109
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
110
    protected String activeSurfaceArea;
111
    @XmlElement(name = "WingArea")
112
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
113
    protected String wingArea;
114
    @XmlElement(name = "CollectionName")
115
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
116
    protected String collectionName;
117
    @XmlElement(name = "Genre")
118
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
119
    protected String genre;
120
    @XmlElement(name = "InitialPrintRunRarity")
121
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
122
    protected String initialPrintRunRarity;
123
    @XmlElement(name = "SpecificUsesForProduct")
124
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
125
    protected String specificUsesForProduct;
126
    @XmlElement(name = "BrakeStyle")
127
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
128
    protected String brakeStyle;
129
    @XmlElement(name = "ControlType")
130
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
131
    protected String controlType;
132
    @XmlElement(name = "CountryOfOrigin")
133
    protected String countryOfOrigin;
134
    @XmlElement(name = "DriveSystem")
135
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
136
    protected String driveSystem;
137
    @XmlElement(name = "EducationalObjective")
138
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
139
    protected String educationalObjective;
140
    @XmlElement(name = "FrameMaterialType")
141
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
142
    protected String frameMaterialType;
143
    @XmlElement(name = "FuelCapacity")
144
    protected VolumeDimension fuelCapacity;
145
    @XmlElement(name = "FuelType")
146
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
147
    protected String fuelType;
148
    @XmlElement(name = "IsElectric")
149
    protected Boolean isElectric;
150
    @XmlElement(name = "MaterialType")
151
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
152
    protected String materialType;
153
    @XmlElement(name = "MaximumRange")
154
    protected LengthDimension maximumRange;
155
    @XmlElement(name = "MaximumSpeed")
156
    protected SpeedDimension maximumSpeed;
157
    @XmlElement(name = "MotorType")
158
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
159
    protected String motorType;
160
    @XmlElement(name = "AnimalType")
161
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
162
    protected String animalType;
163
    @XmlElement(name = "Publisher")
164
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
165
    protected String publisher;
166
    @XmlElement(name = "RadioBandsSupported")
167
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
168
    protected String radioBandsSupported;
169
    @XmlElement(name = "RailType")
170
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
171
    protected String railType;
172
    @XmlElement(name = "Scale")
173
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
174
    protected String scale;
175
    @XmlElement(name = "SkillLevel")
176
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
177
    protected String skillLevel;
178
    @XmlElement(name = "SuspensionType")
179
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
180
    protected String suspensionType;
181
    @XmlElement(name = "ProductTheme")
182
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
183
    protected String productTheme;
184
    @XmlElement(name = "TireType")
185
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
186
    protected String tireType;
187
    @XmlElement(name = "ToyAwardName")
188
    protected List<ToyAwardType> toyAwardName;
189
    @XmlElement(name = "WheelDiameter")
190
    protected LengthDimension wheelDiameter;
191
    @XmlElement(name = "WheelType")
192
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
193
    protected String wheelType;
194
 
195
    /**
196
     * Gets the value of the activeSurfaceArea property.
197
     * 
198
     * @return
199
     *     possible object is
200
     *     {@link String }
201
     *     
202
     */
203
    public String getActiveSurfaceArea() {
204
        return activeSurfaceArea;
205
    }
206
 
207
    /**
208
     * Sets the value of the activeSurfaceArea property.
209
     * 
210
     * @param value
211
     *     allowed object is
212
     *     {@link String }
213
     *     
214
     */
215
    public void setActiveSurfaceArea(String value) {
216
        this.activeSurfaceArea = value;
217
    }
218
 
219
    /**
220
     * Gets the value of the wingArea property.
221
     * 
222
     * @return
223
     *     possible object is
224
     *     {@link String }
225
     *     
226
     */
227
    public String getWingArea() {
228
        return wingArea;
229
    }
230
 
231
    /**
232
     * Sets the value of the wingArea property.
233
     * 
234
     * @param value
235
     *     allowed object is
236
     *     {@link String }
237
     *     
238
     */
239
    public void setWingArea(String value) {
240
        this.wingArea = value;
241
    }
242
 
243
    /**
244
     * Gets the value of the collectionName property.
245
     * 
246
     * @return
247
     *     possible object is
248
     *     {@link String }
249
     *     
250
     */
251
    public String getCollectionName() {
252
        return collectionName;
253
    }
254
 
255
    /**
256
     * Sets the value of the collectionName property.
257
     * 
258
     * @param value
259
     *     allowed object is
260
     *     {@link String }
261
     *     
262
     */
263
    public void setCollectionName(String value) {
264
        this.collectionName = value;
265
    }
266
 
267
    /**
268
     * Gets the value of the genre property.
269
     * 
270
     * @return
271
     *     possible object is
272
     *     {@link String }
273
     *     
274
     */
275
    public String getGenre() {
276
        return genre;
277
    }
278
 
279
    /**
280
     * Sets the value of the genre property.
281
     * 
282
     * @param value
283
     *     allowed object is
284
     *     {@link String }
285
     *     
286
     */
287
    public void setGenre(String value) {
288
        this.genre = value;
289
    }
290
 
291
    /**
292
     * Gets the value of the initialPrintRunRarity property.
293
     * 
294
     * @return
295
     *     possible object is
296
     *     {@link String }
297
     *     
298
     */
299
    public String getInitialPrintRunRarity() {
300
        return initialPrintRunRarity;
301
    }
302
 
303
    /**
304
     * Sets the value of the initialPrintRunRarity property.
305
     * 
306
     * @param value
307
     *     allowed object is
308
     *     {@link String }
309
     *     
310
     */
311
    public void setInitialPrintRunRarity(String value) {
312
        this.initialPrintRunRarity = value;
313
    }
314
 
315
    /**
316
     * Gets the value of the specificUsesForProduct property.
317
     * 
318
     * @return
319
     *     possible object is
320
     *     {@link String }
321
     *     
322
     */
323
    public String getSpecificUsesForProduct() {
324
        return specificUsesForProduct;
325
    }
326
 
327
    /**
328
     * Sets the value of the specificUsesForProduct property.
329
     * 
330
     * @param value
331
     *     allowed object is
332
     *     {@link String }
333
     *     
334
     */
335
    public void setSpecificUsesForProduct(String value) {
336
        this.specificUsesForProduct = value;
337
    }
338
 
339
    /**
340
     * Gets the value of the brakeStyle property.
341
     * 
342
     * @return
343
     *     possible object is
344
     *     {@link String }
345
     *     
346
     */
347
    public String getBrakeStyle() {
348
        return brakeStyle;
349
    }
350
 
351
    /**
352
     * Sets the value of the brakeStyle property.
353
     * 
354
     * @param value
355
     *     allowed object is
356
     *     {@link String }
357
     *     
358
     */
359
    public void setBrakeStyle(String value) {
360
        this.brakeStyle = value;
361
    }
362
 
363
    /**
364
     * Gets the value of the controlType property.
365
     * 
366
     * @return
367
     *     possible object is
368
     *     {@link String }
369
     *     
370
     */
371
    public String getControlType() {
372
        return controlType;
373
    }
374
 
375
    /**
376
     * Sets the value of the controlType property.
377
     * 
378
     * @param value
379
     *     allowed object is
380
     *     {@link String }
381
     *     
382
     */
383
    public void setControlType(String value) {
384
        this.controlType = value;
385
    }
386
 
387
    /**
388
     * Gets the value of the countryOfOrigin property.
389
     * 
390
     * @return
391
     *     possible object is
392
     *     {@link String }
393
     *     
394
     */
395
    public String getCountryOfOrigin() {
396
        return countryOfOrigin;
397
    }
398
 
399
    /**
400
     * Sets the value of the countryOfOrigin property.
401
     * 
402
     * @param value
403
     *     allowed object is
404
     *     {@link String }
405
     *     
406
     */
407
    public void setCountryOfOrigin(String value) {
408
        this.countryOfOrigin = value;
409
    }
410
 
411
    /**
412
     * Gets the value of the driveSystem property.
413
     * 
414
     * @return
415
     *     possible object is
416
     *     {@link String }
417
     *     
418
     */
419
    public String getDriveSystem() {
420
        return driveSystem;
421
    }
422
 
423
    /**
424
     * Sets the value of the driveSystem property.
425
     * 
426
     * @param value
427
     *     allowed object is
428
     *     {@link String }
429
     *     
430
     */
431
    public void setDriveSystem(String value) {
432
        this.driveSystem = value;
433
    }
434
 
435
    /**
436
     * Gets the value of the educationalObjective property.
437
     * 
438
     * @return
439
     *     possible object is
440
     *     {@link String }
441
     *     
442
     */
443
    public String getEducationalObjective() {
444
        return educationalObjective;
445
    }
446
 
447
    /**
448
     * Sets the value of the educationalObjective property.
449
     * 
450
     * @param value
451
     *     allowed object is
452
     *     {@link String }
453
     *     
454
     */
455
    public void setEducationalObjective(String value) {
456
        this.educationalObjective = value;
457
    }
458
 
459
    /**
460
     * Gets the value of the frameMaterialType property.
461
     * 
462
     * @return
463
     *     possible object is
464
     *     {@link String }
465
     *     
466
     */
467
    public String getFrameMaterialType() {
468
        return frameMaterialType;
469
    }
470
 
471
    /**
472
     * Sets the value of the frameMaterialType property.
473
     * 
474
     * @param value
475
     *     allowed object is
476
     *     {@link String }
477
     *     
478
     */
479
    public void setFrameMaterialType(String value) {
480
        this.frameMaterialType = value;
481
    }
482
 
483
    /**
484
     * Gets the value of the fuelCapacity property.
485
     * 
486
     * @return
487
     *     possible object is
488
     *     {@link VolumeDimension }
489
     *     
490
     */
491
    public VolumeDimension getFuelCapacity() {
492
        return fuelCapacity;
493
    }
494
 
495
    /**
496
     * Sets the value of the fuelCapacity property.
497
     * 
498
     * @param value
499
     *     allowed object is
500
     *     {@link VolumeDimension }
501
     *     
502
     */
503
    public void setFuelCapacity(VolumeDimension value) {
504
        this.fuelCapacity = value;
505
    }
506
 
507
    /**
508
     * Gets the value of the fuelType property.
509
     * 
510
     * @return
511
     *     possible object is
512
     *     {@link String }
513
     *     
514
     */
515
    public String getFuelType() {
516
        return fuelType;
517
    }
518
 
519
    /**
520
     * Sets the value of the fuelType property.
521
     * 
522
     * @param value
523
     *     allowed object is
524
     *     {@link String }
525
     *     
526
     */
527
    public void setFuelType(String value) {
528
        this.fuelType = value;
529
    }
530
 
531
    /**
532
     * Gets the value of the isElectric property.
533
     * 
534
     * @return
535
     *     possible object is
536
     *     {@link Boolean }
537
     *     
538
     */
539
    public Boolean isIsElectric() {
540
        return isElectric;
541
    }
542
 
543
    /**
544
     * Sets the value of the isElectric property.
545
     * 
546
     * @param value
547
     *     allowed object is
548
     *     {@link Boolean }
549
     *     
550
     */
551
    public void setIsElectric(Boolean value) {
552
        this.isElectric = value;
553
    }
554
 
555
    /**
556
     * Gets the value of the materialType property.
557
     * 
558
     * @return
559
     *     possible object is
560
     *     {@link String }
561
     *     
562
     */
563
    public String getMaterialType() {
564
        return materialType;
565
    }
566
 
567
    /**
568
     * Sets the value of the materialType property.
569
     * 
570
     * @param value
571
     *     allowed object is
572
     *     {@link String }
573
     *     
574
     */
575
    public void setMaterialType(String value) {
576
        this.materialType = value;
577
    }
578
 
579
    /**
580
     * Gets the value of the maximumRange property.
581
     * 
582
     * @return
583
     *     possible object is
584
     *     {@link LengthDimension }
585
     *     
586
     */
587
    public LengthDimension getMaximumRange() {
588
        return maximumRange;
589
    }
590
 
591
    /**
592
     * Sets the value of the maximumRange property.
593
     * 
594
     * @param value
595
     *     allowed object is
596
     *     {@link LengthDimension }
597
     *     
598
     */
599
    public void setMaximumRange(LengthDimension value) {
600
        this.maximumRange = value;
601
    }
602
 
603
    /**
604
     * Gets the value of the maximumSpeed property.
605
     * 
606
     * @return
607
     *     possible object is
608
     *     {@link SpeedDimension }
609
     *     
610
     */
611
    public SpeedDimension getMaximumSpeed() {
612
        return maximumSpeed;
613
    }
614
 
615
    /**
616
     * Sets the value of the maximumSpeed property.
617
     * 
618
     * @param value
619
     *     allowed object is
620
     *     {@link SpeedDimension }
621
     *     
622
     */
623
    public void setMaximumSpeed(SpeedDimension value) {
624
        this.maximumSpeed = value;
625
    }
626
 
627
    /**
628
     * Gets the value of the motorType property.
629
     * 
630
     * @return
631
     *     possible object is
632
     *     {@link String }
633
     *     
634
     */
635
    public String getMotorType() {
636
        return motorType;
637
    }
638
 
639
    /**
640
     * Sets the value of the motorType property.
641
     * 
642
     * @param value
643
     *     allowed object is
644
     *     {@link String }
645
     *     
646
     */
647
    public void setMotorType(String value) {
648
        this.motorType = value;
649
    }
650
 
651
    /**
652
     * Gets the value of the animalType property.
653
     * 
654
     * @return
655
     *     possible object is
656
     *     {@link String }
657
     *     
658
     */
659
    public String getAnimalType() {
660
        return animalType;
661
    }
662
 
663
    /**
664
     * Sets the value of the animalType property.
665
     * 
666
     * @param value
667
     *     allowed object is
668
     *     {@link String }
669
     *     
670
     */
671
    public void setAnimalType(String value) {
672
        this.animalType = value;
673
    }
674
 
675
    /**
676
     * Gets the value of the publisher property.
677
     * 
678
     * @return
679
     *     possible object is
680
     *     {@link String }
681
     *     
682
     */
683
    public String getPublisher() {
684
        return publisher;
685
    }
686
 
687
    /**
688
     * Sets the value of the publisher property.
689
     * 
690
     * @param value
691
     *     allowed object is
692
     *     {@link String }
693
     *     
694
     */
695
    public void setPublisher(String value) {
696
        this.publisher = value;
697
    }
698
 
699
    /**
700
     * Gets the value of the radioBandsSupported property.
701
     * 
702
     * @return
703
     *     possible object is
704
     *     {@link String }
705
     *     
706
     */
707
    public String getRadioBandsSupported() {
708
        return radioBandsSupported;
709
    }
710
 
711
    /**
712
     * Sets the value of the radioBandsSupported property.
713
     * 
714
     * @param value
715
     *     allowed object is
716
     *     {@link String }
717
     *     
718
     */
719
    public void setRadioBandsSupported(String value) {
720
        this.radioBandsSupported = value;
721
    }
722
 
723
    /**
724
     * Gets the value of the railType property.
725
     * 
726
     * @return
727
     *     possible object is
728
     *     {@link String }
729
     *     
730
     */
731
    public String getRailType() {
732
        return railType;
733
    }
734
 
735
    /**
736
     * Sets the value of the railType property.
737
     * 
738
     * @param value
739
     *     allowed object is
740
     *     {@link String }
741
     *     
742
     */
743
    public void setRailType(String value) {
744
        this.railType = value;
745
    }
746
 
747
    /**
748
     * Gets the value of the scale property.
749
     * 
750
     * @return
751
     *     possible object is
752
     *     {@link String }
753
     *     
754
     */
755
    public String getScale() {
756
        return scale;
757
    }
758
 
759
    /**
760
     * Sets the value of the scale property.
761
     * 
762
     * @param value
763
     *     allowed object is
764
     *     {@link String }
765
     *     
766
     */
767
    public void setScale(String value) {
768
        this.scale = value;
769
    }
770
 
771
    /**
772
     * Gets the value of the skillLevel property.
773
     * 
774
     * @return
775
     *     possible object is
776
     *     {@link String }
777
     *     
778
     */
779
    public String getSkillLevel() {
780
        return skillLevel;
781
    }
782
 
783
    /**
784
     * Sets the value of the skillLevel property.
785
     * 
786
     * @param value
787
     *     allowed object is
788
     *     {@link String }
789
     *     
790
     */
791
    public void setSkillLevel(String value) {
792
        this.skillLevel = value;
793
    }
794
 
795
    /**
796
     * Gets the value of the suspensionType property.
797
     * 
798
     * @return
799
     *     possible object is
800
     *     {@link String }
801
     *     
802
     */
803
    public String getSuspensionType() {
804
        return suspensionType;
805
    }
806
 
807
    /**
808
     * Sets the value of the suspensionType property.
809
     * 
810
     * @param value
811
     *     allowed object is
812
     *     {@link String }
813
     *     
814
     */
815
    public void setSuspensionType(String value) {
816
        this.suspensionType = value;
817
    }
818
 
819
    /**
820
     * Gets the value of the productTheme property.
821
     * 
822
     * @return
823
     *     possible object is
824
     *     {@link String }
825
     *     
826
     */
827
    public String getProductTheme() {
828
        return productTheme;
829
    }
830
 
831
    /**
832
     * Sets the value of the productTheme property.
833
     * 
834
     * @param value
835
     *     allowed object is
836
     *     {@link String }
837
     *     
838
     */
839
    public void setProductTheme(String value) {
840
        this.productTheme = value;
841
    }
842
 
843
    /**
844
     * Gets the value of the tireType property.
845
     * 
846
     * @return
847
     *     possible object is
848
     *     {@link String }
849
     *     
850
     */
851
    public String getTireType() {
852
        return tireType;
853
    }
854
 
855
    /**
856
     * Sets the value of the tireType property.
857
     * 
858
     * @param value
859
     *     allowed object is
860
     *     {@link String }
861
     *     
862
     */
863
    public void setTireType(String value) {
864
        this.tireType = value;
865
    }
866
 
867
    /**
868
     * Gets the value of the toyAwardName property.
869
     * 
870
     * <p>
871
     * This accessor method returns a reference to the live list,
872
     * not a snapshot. Therefore any modification you make to the
873
     * returned list will be present inside the JAXB object.
874
     * This is why there is not a <CODE>set</CODE> method for the toyAwardName property.
875
     * 
876
     * <p>
877
     * For example, to add a new item, do as follows:
878
     * <pre>
879
     *    getToyAwardName().add(newItem);
880
     * </pre>
881
     * 
882
     * 
883
     * <p>
884
     * Objects of the following type(s) are allowed in the list
885
     * {@link ToyAwardType }
886
     * 
887
     * 
888
     */
889
    public List<ToyAwardType> getToyAwardName() {
890
        if (toyAwardName == null) {
891
            toyAwardName = new ArrayList<ToyAwardType>();
892
        }
893
        return this.toyAwardName;
894
    }
895
 
896
    /**
897
     * Gets the value of the wheelDiameter property.
898
     * 
899
     * @return
900
     *     possible object is
901
     *     {@link LengthDimension }
902
     *     
903
     */
904
    public LengthDimension getWheelDiameter() {
905
        return wheelDiameter;
906
    }
907
 
908
    /**
909
     * Sets the value of the wheelDiameter property.
910
     * 
911
     * @param value
912
     *     allowed object is
913
     *     {@link LengthDimension }
914
     *     
915
     */
916
    public void setWheelDiameter(LengthDimension value) {
917
        this.wheelDiameter = value;
918
    }
919
 
920
    /**
921
     * Gets the value of the wheelType property.
922
     * 
923
     * @return
924
     *     possible object is
925
     *     {@link String }
926
     *     
927
     */
928
    public String getWheelType() {
929
        return wheelType;
930
    }
931
 
932
    /**
933
     * Sets the value of the wheelType property.
934
     * 
935
     * @param value
936
     *     allowed object is
937
     *     {@link String }
938
     *     
939
     */
940
    public void setWheelType(String value) {
941
        this.wheelType = value;
942
    }
943
 
944
}