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