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.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="CableLength" type="{}LengthDimension" minOccurs="0"/>
33
 *         &lt;element ref="{}ConnectorGender" maxOccurs="5" minOccurs="0"/>
34
 *         &lt;element ref="{}ConnectorTypeUsedOnCable" minOccurs="0"/>
35
 *         &lt;element ref="{}MaximumSupportedScreenSize" minOccurs="0"/>
36
 *         &lt;element ref="{}MinimumSupportedScreenSize" minOccurs="0"/>
37
 *         &lt;element ref="{}MountingPattern" minOccurs="0"/>
38
 *         &lt;element ref="{}MountingType" minOccurs="0"/>
39
 *         &lt;element ref="{}MountMotion" minOccurs="0"/>
40
 *         &lt;element ref="{}MountBoltPattern" minOccurs="0"/>
41
 *         &lt;element name="PowerSource" type="{}FortyStringNotNull" minOccurs="0"/>
42
 *         &lt;element name="WirelessTechnology" type="{}StringNotNull" maxOccurs="5" minOccurs="0"/>
43
 *       &lt;/sequence>
44
 *     &lt;/restriction>
45
 *   &lt;/complexContent>
46
 * &lt;/complexType>
47
 * </pre>
48
 * 
49
 * 
50
 */
51
@XmlAccessorType(XmlAccessType.FIELD)
52
@XmlType(name = "", propOrder = {
53
    "cableLength",
54
    "connectorGender",
55
    "connectorTypeUsedOnCable",
56
    "maximumSupportedScreenSize",
57
    "minimumSupportedScreenSize",
58
    "mountingPattern",
59
    "mountingType",
60
    "mountMotion",
61
    "mountBoltPattern",
62
    "powerSource",
63
    "wirelessTechnology"
64
})
65
@XmlRootElement(name = "AudioVideoAccessory")
66
public class AudioVideoAccessory {
67
 
68
    @XmlElement(name = "CableLength")
69
    protected LengthDimension cableLength;
70
    @XmlElement(name = "ConnectorGender")
71
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
72
    protected List<String> connectorGender;
73
    @XmlElement(name = "ConnectorTypeUsedOnCable")
74
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
75
    protected String connectorTypeUsedOnCable;
76
    @XmlElement(name = "MaximumSupportedScreenSize")
77
    protected LengthDimension maximumSupportedScreenSize;
78
    @XmlElement(name = "MinimumSupportedScreenSize")
79
    protected LengthDimension minimumSupportedScreenSize;
80
    @XmlElement(name = "MountingPattern")
81
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
82
    protected String mountingPattern;
83
    @XmlElement(name = "MountingType")
84
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
85
    protected String mountingType;
86
    @XmlElement(name = "MountMotion")
87
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
88
    protected String mountMotion;
89
    @XmlElement(name = "MountBoltPattern")
90
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
91
    protected String mountBoltPattern;
92
    @XmlElement(name = "PowerSource")
93
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
94
    protected String powerSource;
95
    @XmlElement(name = "WirelessTechnology")
96
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
97
    protected List<String> wirelessTechnology;
98
 
99
    /**
100
     * Gets the value of the cableLength property.
101
     * 
102
     * @return
103
     *     possible object is
104
     *     {@link LengthDimension }
105
     *     
106
     */
107
    public LengthDimension getCableLength() {
108
        return cableLength;
109
    }
110
 
111
    /**
112
     * Sets the value of the cableLength property.
113
     * 
114
     * @param value
115
     *     allowed object is
116
     *     {@link LengthDimension }
117
     *     
118
     */
119
    public void setCableLength(LengthDimension value) {
120
        this.cableLength = value;
121
    }
122
 
123
    /**
124
     * Gets the value of the connectorGender property.
125
     * 
126
     * <p>
127
     * This accessor method returns a reference to the live list,
128
     * not a snapshot. Therefore any modification you make to the
129
     * returned list will be present inside the JAXB object.
130
     * This is why there is not a <CODE>set</CODE> method for the connectorGender property.
131
     * 
132
     * <p>
133
     * For example, to add a new item, do as follows:
134
     * <pre>
135
     *    getConnectorGender().add(newItem);
136
     * </pre>
137
     * 
138
     * 
139
     * <p>
140
     * Objects of the following type(s) are allowed in the list
141
     * {@link String }
142
     * 
143
     * 
144
     */
145
    public List<String> getConnectorGender() {
146
        if (connectorGender == null) {
147
            connectorGender = new ArrayList<String>();
148
        }
149
        return this.connectorGender;
150
    }
151
 
152
    /**
153
     * Gets the value of the connectorTypeUsedOnCable property.
154
     * 
155
     * @return
156
     *     possible object is
157
     *     {@link String }
158
     *     
159
     */
160
    public String getConnectorTypeUsedOnCable() {
161
        return connectorTypeUsedOnCable;
162
    }
163
 
164
    /**
165
     * Sets the value of the connectorTypeUsedOnCable property.
166
     * 
167
     * @param value
168
     *     allowed object is
169
     *     {@link String }
170
     *     
171
     */
172
    public void setConnectorTypeUsedOnCable(String value) {
173
        this.connectorTypeUsedOnCable = value;
174
    }
175
 
176
    /**
177
     * Gets the value of the maximumSupportedScreenSize property.
178
     * 
179
     * @return
180
     *     possible object is
181
     *     {@link LengthDimension }
182
     *     
183
     */
184
    public LengthDimension getMaximumSupportedScreenSize() {
185
        return maximumSupportedScreenSize;
186
    }
187
 
188
    /**
189
     * Sets the value of the maximumSupportedScreenSize property.
190
     * 
191
     * @param value
192
     *     allowed object is
193
     *     {@link LengthDimension }
194
     *     
195
     */
196
    public void setMaximumSupportedScreenSize(LengthDimension value) {
197
        this.maximumSupportedScreenSize = value;
198
    }
199
 
200
    /**
201
     * Gets the value of the minimumSupportedScreenSize property.
202
     * 
203
     * @return
204
     *     possible object is
205
     *     {@link LengthDimension }
206
     *     
207
     */
208
    public LengthDimension getMinimumSupportedScreenSize() {
209
        return minimumSupportedScreenSize;
210
    }
211
 
212
    /**
213
     * Sets the value of the minimumSupportedScreenSize property.
214
     * 
215
     * @param value
216
     *     allowed object is
217
     *     {@link LengthDimension }
218
     *     
219
     */
220
    public void setMinimumSupportedScreenSize(LengthDimension value) {
221
        this.minimumSupportedScreenSize = value;
222
    }
223
 
224
    /**
225
     * Gets the value of the mountingPattern property.
226
     * 
227
     * @return
228
     *     possible object is
229
     *     {@link String }
230
     *     
231
     */
232
    public String getMountingPattern() {
233
        return mountingPattern;
234
    }
235
 
236
    /**
237
     * Sets the value of the mountingPattern property.
238
     * 
239
     * @param value
240
     *     allowed object is
241
     *     {@link String }
242
     *     
243
     */
244
    public void setMountingPattern(String value) {
245
        this.mountingPattern = value;
246
    }
247
 
248
    /**
249
     * Gets the value of the mountingType property.
250
     * 
251
     * @return
252
     *     possible object is
253
     *     {@link String }
254
     *     
255
     */
256
    public String getMountingType() {
257
        return mountingType;
258
    }
259
 
260
    /**
261
     * Sets the value of the mountingType property.
262
     * 
263
     * @param value
264
     *     allowed object is
265
     *     {@link String }
266
     *     
267
     */
268
    public void setMountingType(String value) {
269
        this.mountingType = value;
270
    }
271
 
272
    /**
273
     * Gets the value of the mountMotion property.
274
     * 
275
     * @return
276
     *     possible object is
277
     *     {@link String }
278
     *     
279
     */
280
    public String getMountMotion() {
281
        return mountMotion;
282
    }
283
 
284
    /**
285
     * Sets the value of the mountMotion property.
286
     * 
287
     * @param value
288
     *     allowed object is
289
     *     {@link String }
290
     *     
291
     */
292
    public void setMountMotion(String value) {
293
        this.mountMotion = value;
294
    }
295
 
296
    /**
297
     * Gets the value of the mountBoltPattern property.
298
     * 
299
     * @return
300
     *     possible object is
301
     *     {@link String }
302
     *     
303
     */
304
    public String getMountBoltPattern() {
305
        return mountBoltPattern;
306
    }
307
 
308
    /**
309
     * Sets the value of the mountBoltPattern property.
310
     * 
311
     * @param value
312
     *     allowed object is
313
     *     {@link String }
314
     *     
315
     */
316
    public void setMountBoltPattern(String value) {
317
        this.mountBoltPattern = value;
318
    }
319
 
320
    /**
321
     * Gets the value of the powerSource property.
322
     * 
323
     * @return
324
     *     possible object is
325
     *     {@link String }
326
     *     
327
     */
328
    public String getPowerSource() {
329
        return powerSource;
330
    }
331
 
332
    /**
333
     * Sets the value of the powerSource property.
334
     * 
335
     * @param value
336
     *     allowed object is
337
     *     {@link String }
338
     *     
339
     */
340
    public void setPowerSource(String value) {
341
        this.powerSource = value;
342
    }
343
 
344
    /**
345
     * Gets the value of the wirelessTechnology property.
346
     * 
347
     * <p>
348
     * This accessor method returns a reference to the live list,
349
     * not a snapshot. Therefore any modification you make to the
350
     * returned list will be present inside the JAXB object.
351
     * This is why there is not a <CODE>set</CODE> method for the wirelessTechnology property.
352
     * 
353
     * <p>
354
     * For example, to add a new item, do as follows:
355
     * <pre>
356
     *    getWirelessTechnology().add(newItem);
357
     * </pre>
358
     * 
359
     * 
360
     * <p>
361
     * Objects of the following type(s) are allowed in the list
362
     * {@link String }
363
     * 
364
     * 
365
     */
366
    public List<String> getWirelessTechnology() {
367
        if (wirelessTechnology == null) {
368
            wirelessTechnology = new ArrayList<String>();
369
        }
370
        return this.wirelessTechnology;
371
    }
372
 
373
}