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.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="TelescopeType" maxOccurs="2" minOccurs="0">
33
 *           &lt;simpleType>
34
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
35
 *               &lt;enumeration value="general"/>
36
 *               &lt;enumeration value="mirror-lens"/>
37
 *               &lt;enumeration value="schmidt-cassegrain"/>
38
 *               &lt;enumeration value="maksutov-cassegrain"/>
39
 *               &lt;enumeration value="reflecting"/>
40
 *               &lt;enumeration value="newtonian-reflector"/>
41
 *               &lt;enumeration value="rich-field-reflector"/>
42
 *               &lt;enumeration value="dobsonian-reflector"/>
43
 *               &lt;enumeration value="refracting"/>
44
 *               &lt;enumeration value="achromatic-refractor"/>
45
 *               &lt;enumeration value="apochromatic-refractor"/>
46
 *             &lt;/restriction>
47
 *           &lt;/simpleType>
48
 *         &lt;/element>
49
 *         &lt;element name="TelescopeEyepiece" maxOccurs="2" minOccurs="0">
50
 *           &lt;simpleType>
51
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
52
 *               &lt;enumeration value="erfle"/>
53
 *               &lt;enumeration value="kellner-and-rke"/>
54
 *               &lt;enumeration value="nagler"/>
55
 *               &lt;enumeration value="orthoscopic"/>
56
 *               &lt;enumeration value="plossl"/>
57
 *               &lt;enumeration value="sma"/>
58
 *               &lt;enumeration value="ultra-wide"/>
59
 *               &lt;enumeration value="zoom"/>
60
 *               &lt;enumeration value="telescope-eyepieces-general"/>
61
 *               &lt;enumeration value="other-eyepieces"/>
62
 *             &lt;/restriction>
63
 *           &lt;/simpleType>
64
 *         &lt;/element>
65
 *         &lt;element name="MinAperture" type="{}ApertureDimension" minOccurs="0"/>
66
 *         &lt;element name="MaxAperture" type="{}ApertureDimension" minOccurs="0"/>
67
 *         &lt;element name="PrimaryAperture" minOccurs="0">
68
 *           &lt;simpleType>
69
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
70
 *               &lt;enumeration value="under-80mm"/>
71
 *               &lt;enumeration value="80mm-90mm"/>
72
 *               &lt;enumeration value="100mm-150mm"/>
73
 *               &lt;enumeration value="150mm-200mm"/>
74
 *               &lt;enumeration value="over-200mm"/>
75
 *             &lt;/restriction>
76
 *           &lt;/simpleType>
77
 *         &lt;/element>
78
 *         &lt;element name="FocalLength" type="{}LengthDimension" minOccurs="0"/>
79
 *         &lt;element name="ResolvingPower" type="{}ResolvingPowerDimension" minOccurs="0"/>
80
 *         &lt;element name="Mount" type="{}StringNotNull" minOccurs="0"/>
81
 *         &lt;element name="HighestUsefulMagnification" type="{}ZoomDimension" minOccurs="0"/>
82
 *         &lt;element name="LCDTiltAngle" type="{}DegreeDimension" minOccurs="0"/>
83
 *         &lt;element name="LowestUsefulMagnification" type="{}ZoomDimension" minOccurs="0"/>
84
 *         &lt;element name="OpticalTubeLength" type="{}LengthDimension" minOccurs="0"/>
85
 *         &lt;element name="OpticalTubeDiameter" type="{}LengthDimension" minOccurs="0"/>
86
 *         &lt;element name="OpticalCoatings" type="{}StringNotNull" minOccurs="0"/>
87
 *         &lt;element name="MotorizedControls" type="{}StringNotNull" minOccurs="0"/>
88
 *         &lt;element name="Viewfinder" type="{}StringNotNull" maxOccurs="3" minOccurs="0"/>
89
 *         &lt;element name="EyepieceType" type="{}StringNotNull" minOccurs="0"/>
90
 *         &lt;element name="OutdoorUse" type="{}LongString" minOccurs="0"/>
91
 *         &lt;element name="PhotographicResolution" type="{}StringNotNull" minOccurs="0"/>
92
 *         &lt;element name="DawesLimit" type="{}DawesLimitDimension" minOccurs="0"/>
93
 *         &lt;element ref="{}ComputerPlatform" maxOccurs="3" minOccurs="0"/>
94
 *         &lt;element name="BatteryType" type="{}StringNotNull" minOccurs="0"/>
95
 *         &lt;element name="BatteryIncluded" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
96
 *       &lt;/sequence>
97
 *     &lt;/restriction>
98
 *   &lt;/complexContent>
99
 * &lt;/complexType>
100
 * </pre>
101
 * 
102
 * 
103
 */
104
@XmlAccessorType(XmlAccessType.FIELD)
105
@XmlType(name = "", propOrder = {
106
    "telescopeType",
107
    "telescopeEyepiece",
108
    "minAperture",
109
    "maxAperture",
110
    "primaryAperture",
111
    "focalLength",
112
    "resolvingPower",
113
    "mount",
114
    "highestUsefulMagnification",
115
    "lcdTiltAngle",
116
    "lowestUsefulMagnification",
117
    "opticalTubeLength",
118
    "opticalTubeDiameter",
119
    "opticalCoatings",
120
    "motorizedControls",
121
    "viewfinder",
122
    "eyepieceType",
123
    "outdoorUse",
124
    "photographicResolution",
125
    "dawesLimit",
126
    "computerPlatform",
127
    "batteryType",
128
    "batteryIncluded"
129
})
130
@XmlRootElement(name = "Telescope")
131
public class Telescope {
132
 
133
    @XmlElement(name = "TelescopeType")
134
    protected List<String> telescopeType;
135
    @XmlElement(name = "TelescopeEyepiece")
136
    protected List<String> telescopeEyepiece;
137
    @XmlElement(name = "MinAperture")
138
    protected ApertureDimension minAperture;
139
    @XmlElement(name = "MaxAperture")
140
    protected ApertureDimension maxAperture;
141
    @XmlElement(name = "PrimaryAperture")
142
    protected String primaryAperture;
143
    @XmlElement(name = "FocalLength")
144
    protected LengthDimension focalLength;
145
    @XmlElement(name = "ResolvingPower")
146
    protected ResolvingPowerDimension resolvingPower;
147
    @XmlElement(name = "Mount")
148
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
149
    protected String mount;
150
    @XmlElement(name = "HighestUsefulMagnification")
151
    protected ZoomDimension highestUsefulMagnification;
152
    @XmlElement(name = "LCDTiltAngle")
153
    protected DegreeDimension lcdTiltAngle;
154
    @XmlElement(name = "LowestUsefulMagnification")
155
    protected ZoomDimension lowestUsefulMagnification;
156
    @XmlElement(name = "OpticalTubeLength")
157
    protected LengthDimension opticalTubeLength;
158
    @XmlElement(name = "OpticalTubeDiameter")
159
    protected LengthDimension opticalTubeDiameter;
160
    @XmlElement(name = "OpticalCoatings")
161
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
162
    protected String opticalCoatings;
163
    @XmlElement(name = "MotorizedControls")
164
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
165
    protected String motorizedControls;
166
    @XmlElement(name = "Viewfinder")
167
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
168
    protected List<String> viewfinder;
169
    @XmlElement(name = "EyepieceType")
170
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
171
    protected String eyepieceType;
172
    @XmlElement(name = "OutdoorUse")
173
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
174
    protected String outdoorUse;
175
    @XmlElement(name = "PhotographicResolution")
176
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
177
    protected String photographicResolution;
178
    @XmlElement(name = "DawesLimit")
179
    protected DawesLimitDimension dawesLimit;
180
    @XmlElement(name = "ComputerPlatform")
181
    protected List<ComputerPlatform> computerPlatform;
182
    @XmlElement(name = "BatteryType")
183
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
184
    protected String batteryType;
185
    @XmlElement(name = "BatteryIncluded")
186
    protected Boolean batteryIncluded;
187
 
188
    /**
189
     * Gets the value of the telescopeType property.
190
     * 
191
     * <p>
192
     * This accessor method returns a reference to the live list,
193
     * not a snapshot. Therefore any modification you make to the
194
     * returned list will be present inside the JAXB object.
195
     * This is why there is not a <CODE>set</CODE> method for the telescopeType property.
196
     * 
197
     * <p>
198
     * For example, to add a new item, do as follows:
199
     * <pre>
200
     *    getTelescopeType().add(newItem);
201
     * </pre>
202
     * 
203
     * 
204
     * <p>
205
     * Objects of the following type(s) are allowed in the list
206
     * {@link String }
207
     * 
208
     * 
209
     */
210
    public List<String> getTelescopeType() {
211
        if (telescopeType == null) {
212
            telescopeType = new ArrayList<String>();
213
        }
214
        return this.telescopeType;
215
    }
216
 
217
    /**
218
     * Gets the value of the telescopeEyepiece property.
219
     * 
220
     * <p>
221
     * This accessor method returns a reference to the live list,
222
     * not a snapshot. Therefore any modification you make to the
223
     * returned list will be present inside the JAXB object.
224
     * This is why there is not a <CODE>set</CODE> method for the telescopeEyepiece property.
225
     * 
226
     * <p>
227
     * For example, to add a new item, do as follows:
228
     * <pre>
229
     *    getTelescopeEyepiece().add(newItem);
230
     * </pre>
231
     * 
232
     * 
233
     * <p>
234
     * Objects of the following type(s) are allowed in the list
235
     * {@link String }
236
     * 
237
     * 
238
     */
239
    public List<String> getTelescopeEyepiece() {
240
        if (telescopeEyepiece == null) {
241
            telescopeEyepiece = new ArrayList<String>();
242
        }
243
        return this.telescopeEyepiece;
244
    }
245
 
246
    /**
247
     * Gets the value of the minAperture property.
248
     * 
249
     * @return
250
     *     possible object is
251
     *     {@link ApertureDimension }
252
     *     
253
     */
254
    public ApertureDimension getMinAperture() {
255
        return minAperture;
256
    }
257
 
258
    /**
259
     * Sets the value of the minAperture property.
260
     * 
261
     * @param value
262
     *     allowed object is
263
     *     {@link ApertureDimension }
264
     *     
265
     */
266
    public void setMinAperture(ApertureDimension value) {
267
        this.minAperture = value;
268
    }
269
 
270
    /**
271
     * Gets the value of the maxAperture property.
272
     * 
273
     * @return
274
     *     possible object is
275
     *     {@link ApertureDimension }
276
     *     
277
     */
278
    public ApertureDimension getMaxAperture() {
279
        return maxAperture;
280
    }
281
 
282
    /**
283
     * Sets the value of the maxAperture property.
284
     * 
285
     * @param value
286
     *     allowed object is
287
     *     {@link ApertureDimension }
288
     *     
289
     */
290
    public void setMaxAperture(ApertureDimension value) {
291
        this.maxAperture = value;
292
    }
293
 
294
    /**
295
     * Gets the value of the primaryAperture property.
296
     * 
297
     * @return
298
     *     possible object is
299
     *     {@link String }
300
     *     
301
     */
302
    public String getPrimaryAperture() {
303
        return primaryAperture;
304
    }
305
 
306
    /**
307
     * Sets the value of the primaryAperture property.
308
     * 
309
     * @param value
310
     *     allowed object is
311
     *     {@link String }
312
     *     
313
     */
314
    public void setPrimaryAperture(String value) {
315
        this.primaryAperture = value;
316
    }
317
 
318
    /**
319
     * Gets the value of the focalLength property.
320
     * 
321
     * @return
322
     *     possible object is
323
     *     {@link LengthDimension }
324
     *     
325
     */
326
    public LengthDimension getFocalLength() {
327
        return focalLength;
328
    }
329
 
330
    /**
331
     * Sets the value of the focalLength property.
332
     * 
333
     * @param value
334
     *     allowed object is
335
     *     {@link LengthDimension }
336
     *     
337
     */
338
    public void setFocalLength(LengthDimension value) {
339
        this.focalLength = value;
340
    }
341
 
342
    /**
343
     * Gets the value of the resolvingPower property.
344
     * 
345
     * @return
346
     *     possible object is
347
     *     {@link ResolvingPowerDimension }
348
     *     
349
     */
350
    public ResolvingPowerDimension getResolvingPower() {
351
        return resolvingPower;
352
    }
353
 
354
    /**
355
     * Sets the value of the resolvingPower property.
356
     * 
357
     * @param value
358
     *     allowed object is
359
     *     {@link ResolvingPowerDimension }
360
     *     
361
     */
362
    public void setResolvingPower(ResolvingPowerDimension value) {
363
        this.resolvingPower = value;
364
    }
365
 
366
    /**
367
     * Gets the value of the mount property.
368
     * 
369
     * @return
370
     *     possible object is
371
     *     {@link String }
372
     *     
373
     */
374
    public String getMount() {
375
        return mount;
376
    }
377
 
378
    /**
379
     * Sets the value of the mount property.
380
     * 
381
     * @param value
382
     *     allowed object is
383
     *     {@link String }
384
     *     
385
     */
386
    public void setMount(String value) {
387
        this.mount = value;
388
    }
389
 
390
    /**
391
     * Gets the value of the highestUsefulMagnification property.
392
     * 
393
     * @return
394
     *     possible object is
395
     *     {@link ZoomDimension }
396
     *     
397
     */
398
    public ZoomDimension getHighestUsefulMagnification() {
399
        return highestUsefulMagnification;
400
    }
401
 
402
    /**
403
     * Sets the value of the highestUsefulMagnification property.
404
     * 
405
     * @param value
406
     *     allowed object is
407
     *     {@link ZoomDimension }
408
     *     
409
     */
410
    public void setHighestUsefulMagnification(ZoomDimension value) {
411
        this.highestUsefulMagnification = value;
412
    }
413
 
414
    /**
415
     * Gets the value of the lcdTiltAngle property.
416
     * 
417
     * @return
418
     *     possible object is
419
     *     {@link DegreeDimension }
420
     *     
421
     */
422
    public DegreeDimension getLCDTiltAngle() {
423
        return lcdTiltAngle;
424
    }
425
 
426
    /**
427
     * Sets the value of the lcdTiltAngle property.
428
     * 
429
     * @param value
430
     *     allowed object is
431
     *     {@link DegreeDimension }
432
     *     
433
     */
434
    public void setLCDTiltAngle(DegreeDimension value) {
435
        this.lcdTiltAngle = value;
436
    }
437
 
438
    /**
439
     * Gets the value of the lowestUsefulMagnification property.
440
     * 
441
     * @return
442
     *     possible object is
443
     *     {@link ZoomDimension }
444
     *     
445
     */
446
    public ZoomDimension getLowestUsefulMagnification() {
447
        return lowestUsefulMagnification;
448
    }
449
 
450
    /**
451
     * Sets the value of the lowestUsefulMagnification property.
452
     * 
453
     * @param value
454
     *     allowed object is
455
     *     {@link ZoomDimension }
456
     *     
457
     */
458
    public void setLowestUsefulMagnification(ZoomDimension value) {
459
        this.lowestUsefulMagnification = value;
460
    }
461
 
462
    /**
463
     * Gets the value of the opticalTubeLength property.
464
     * 
465
     * @return
466
     *     possible object is
467
     *     {@link LengthDimension }
468
     *     
469
     */
470
    public LengthDimension getOpticalTubeLength() {
471
        return opticalTubeLength;
472
    }
473
 
474
    /**
475
     * Sets the value of the opticalTubeLength property.
476
     * 
477
     * @param value
478
     *     allowed object is
479
     *     {@link LengthDimension }
480
     *     
481
     */
482
    public void setOpticalTubeLength(LengthDimension value) {
483
        this.opticalTubeLength = value;
484
    }
485
 
486
    /**
487
     * Gets the value of the opticalTubeDiameter property.
488
     * 
489
     * @return
490
     *     possible object is
491
     *     {@link LengthDimension }
492
     *     
493
     */
494
    public LengthDimension getOpticalTubeDiameter() {
495
        return opticalTubeDiameter;
496
    }
497
 
498
    /**
499
     * Sets the value of the opticalTubeDiameter property.
500
     * 
501
     * @param value
502
     *     allowed object is
503
     *     {@link LengthDimension }
504
     *     
505
     */
506
    public void setOpticalTubeDiameter(LengthDimension value) {
507
        this.opticalTubeDiameter = value;
508
    }
509
 
510
    /**
511
     * Gets the value of the opticalCoatings property.
512
     * 
513
     * @return
514
     *     possible object is
515
     *     {@link String }
516
     *     
517
     */
518
    public String getOpticalCoatings() {
519
        return opticalCoatings;
520
    }
521
 
522
    /**
523
     * Sets the value of the opticalCoatings property.
524
     * 
525
     * @param value
526
     *     allowed object is
527
     *     {@link String }
528
     *     
529
     */
530
    public void setOpticalCoatings(String value) {
531
        this.opticalCoatings = value;
532
    }
533
 
534
    /**
535
     * Gets the value of the motorizedControls property.
536
     * 
537
     * @return
538
     *     possible object is
539
     *     {@link String }
540
     *     
541
     */
542
    public String getMotorizedControls() {
543
        return motorizedControls;
544
    }
545
 
546
    /**
547
     * Sets the value of the motorizedControls property.
548
     * 
549
     * @param value
550
     *     allowed object is
551
     *     {@link String }
552
     *     
553
     */
554
    public void setMotorizedControls(String value) {
555
        this.motorizedControls = value;
556
    }
557
 
558
    /**
559
     * Gets the value of the viewfinder property.
560
     * 
561
     * <p>
562
     * This accessor method returns a reference to the live list,
563
     * not a snapshot. Therefore any modification you make to the
564
     * returned list will be present inside the JAXB object.
565
     * This is why there is not a <CODE>set</CODE> method for the viewfinder property.
566
     * 
567
     * <p>
568
     * For example, to add a new item, do as follows:
569
     * <pre>
570
     *    getViewfinder().add(newItem);
571
     * </pre>
572
     * 
573
     * 
574
     * <p>
575
     * Objects of the following type(s) are allowed in the list
576
     * {@link String }
577
     * 
578
     * 
579
     */
580
    public List<String> getViewfinder() {
581
        if (viewfinder == null) {
582
            viewfinder = new ArrayList<String>();
583
        }
584
        return this.viewfinder;
585
    }
586
 
587
    /**
588
     * Gets the value of the eyepieceType property.
589
     * 
590
     * @return
591
     *     possible object is
592
     *     {@link String }
593
     *     
594
     */
595
    public String getEyepieceType() {
596
        return eyepieceType;
597
    }
598
 
599
    /**
600
     * Sets the value of the eyepieceType property.
601
     * 
602
     * @param value
603
     *     allowed object is
604
     *     {@link String }
605
     *     
606
     */
607
    public void setEyepieceType(String value) {
608
        this.eyepieceType = value;
609
    }
610
 
611
    /**
612
     * Gets the value of the outdoorUse property.
613
     * 
614
     * @return
615
     *     possible object is
616
     *     {@link String }
617
     *     
618
     */
619
    public String getOutdoorUse() {
620
        return outdoorUse;
621
    }
622
 
623
    /**
624
     * Sets the value of the outdoorUse property.
625
     * 
626
     * @param value
627
     *     allowed object is
628
     *     {@link String }
629
     *     
630
     */
631
    public void setOutdoorUse(String value) {
632
        this.outdoorUse = value;
633
    }
634
 
635
    /**
636
     * Gets the value of the photographicResolution property.
637
     * 
638
     * @return
639
     *     possible object is
640
     *     {@link String }
641
     *     
642
     */
643
    public String getPhotographicResolution() {
644
        return photographicResolution;
645
    }
646
 
647
    /**
648
     * Sets the value of the photographicResolution property.
649
     * 
650
     * @param value
651
     *     allowed object is
652
     *     {@link String }
653
     *     
654
     */
655
    public void setPhotographicResolution(String value) {
656
        this.photographicResolution = value;
657
    }
658
 
659
    /**
660
     * Gets the value of the dawesLimit property.
661
     * 
662
     * @return
663
     *     possible object is
664
     *     {@link DawesLimitDimension }
665
     *     
666
     */
667
    public DawesLimitDimension getDawesLimit() {
668
        return dawesLimit;
669
    }
670
 
671
    /**
672
     * Sets the value of the dawesLimit property.
673
     * 
674
     * @param value
675
     *     allowed object is
676
     *     {@link DawesLimitDimension }
677
     *     
678
     */
679
    public void setDawesLimit(DawesLimitDimension value) {
680
        this.dawesLimit = value;
681
    }
682
 
683
    /**
684
     * Gets the value of the computerPlatform property.
685
     * 
686
     * <p>
687
     * This accessor method returns a reference to the live list,
688
     * not a snapshot. Therefore any modification you make to the
689
     * returned list will be present inside the JAXB object.
690
     * This is why there is not a <CODE>set</CODE> method for the computerPlatform property.
691
     * 
692
     * <p>
693
     * For example, to add a new item, do as follows:
694
     * <pre>
695
     *    getComputerPlatform().add(newItem);
696
     * </pre>
697
     * 
698
     * 
699
     * <p>
700
     * Objects of the following type(s) are allowed in the list
701
     * {@link ComputerPlatform }
702
     * 
703
     * 
704
     */
705
    public List<ComputerPlatform> getComputerPlatform() {
706
        if (computerPlatform == null) {
707
            computerPlatform = new ArrayList<ComputerPlatform>();
708
        }
709
        return this.computerPlatform;
710
    }
711
 
712
    /**
713
     * Gets the value of the batteryType property.
714
     * 
715
     * @return
716
     *     possible object is
717
     *     {@link String }
718
     *     
719
     */
720
    public String getBatteryType() {
721
        return batteryType;
722
    }
723
 
724
    /**
725
     * Sets the value of the batteryType property.
726
     * 
727
     * @param value
728
     *     allowed object is
729
     *     {@link String }
730
     *     
731
     */
732
    public void setBatteryType(String value) {
733
        this.batteryType = value;
734
    }
735
 
736
    /**
737
     * Gets the value of the batteryIncluded property.
738
     * 
739
     * @return
740
     *     possible object is
741
     *     {@link Boolean }
742
     *     
743
     */
744
    public Boolean isBatteryIncluded() {
745
        return batteryIncluded;
746
    }
747
 
748
    /**
749
     * Sets the value of the batteryIncluded property.
750
     * 
751
     * @param value
752
     *     allowed object is
753
     *     {@link Boolean }
754
     *     
755
     */
756
    public void setBatteryIncluded(Boolean value) {
757
        this.batteryIncluded = value;
758
    }
759
 
760
}