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.BigInteger;
12
import java.util.ArrayList;
13
import java.util.List;
14
import javax.xml.bind.annotation.XmlAccessType;
15
import javax.xml.bind.annotation.XmlAccessorType;
16
import javax.xml.bind.annotation.XmlElement;
17
import javax.xml.bind.annotation.XmlRootElement;
18
import javax.xml.bind.annotation.XmlSchemaType;
19
import javax.xml.bind.annotation.XmlType;
20
import javax.xml.bind.annotation.adapters.NormalizedStringAdapter;
21
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
22
 
23
 
24
/**
25
 * <p>Java class for anonymous complex type.
26
 * 
27
 * <p>The following schema fragment specifies the expected content contained within this class.
28
 * 
29
 * <pre>
30
 * &lt;complexType>
31
 *   &lt;complexContent>
32
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
33
 *       &lt;sequence>
34
 *         &lt;element ref="{}NumberOfSpeakers" minOccurs="0"/>
35
 *         &lt;element ref="{}MaximumWattage" minOccurs="0"/>
36
 *         &lt;element name="WirelessTechnology" type="{}StringNotNull" maxOccurs="5" minOccurs="0"/>
37
 *       &lt;/sequence>
38
 *     &lt;/restriction>
39
 *   &lt;/complexContent>
40
 * &lt;/complexType>
41
 * </pre>
42
 * 
43
 * 
44
 */
45
@XmlAccessorType(XmlAccessType.FIELD)
46
@XmlType(name = "", propOrder = {
47
    "numberOfSpeakers",
48
    "maximumWattage",
49
    "wirelessTechnology"
50
})
51
@XmlRootElement(name = "StereoShelfSystem")
52
public class StereoShelfSystem {
53
 
54
    @XmlElement(name = "NumberOfSpeakers")
55
    @XmlSchemaType(name = "positiveInteger")
56
    protected BigInteger numberOfSpeakers;
57
    @XmlElement(name = "MaximumWattage")
58
    protected WattageDimension maximumWattage;
59
    @XmlElement(name = "WirelessTechnology")
60
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
61
    protected List<String> wirelessTechnology;
62
 
63
    /**
64
     * Gets the value of the numberOfSpeakers property.
65
     * 
66
     * @return
67
     *     possible object is
68
     *     {@link BigInteger }
69
     *     
70
     */
71
    public BigInteger getNumberOfSpeakers() {
72
        return numberOfSpeakers;
73
    }
74
 
75
    /**
76
     * Sets the value of the numberOfSpeakers property.
77
     * 
78
     * @param value
79
     *     allowed object is
80
     *     {@link BigInteger }
81
     *     
82
     */
83
    public void setNumberOfSpeakers(BigInteger value) {
84
        this.numberOfSpeakers = value;
85
    }
86
 
87
    /**
88
     * Gets the value of the maximumWattage property.
89
     * 
90
     * @return
91
     *     possible object is
92
     *     {@link WattageDimension }
93
     *     
94
     */
95
    public WattageDimension getMaximumWattage() {
96
        return maximumWattage;
97
    }
98
 
99
    /**
100
     * Sets the value of the maximumWattage property.
101
     * 
102
     * @param value
103
     *     allowed object is
104
     *     {@link WattageDimension }
105
     *     
106
     */
107
    public void setMaximumWattage(WattageDimension value) {
108
        this.maximumWattage = value;
109
    }
110
 
111
    /**
112
     * Gets the value of the wirelessTechnology property.
113
     * 
114
     * <p>
115
     * This accessor method returns a reference to the live list,
116
     * not a snapshot. Therefore any modification you make to the
117
     * returned list will be present inside the JAXB object.
118
     * This is why there is not a <CODE>set</CODE> method for the wirelessTechnology property.
119
     * 
120
     * <p>
121
     * For example, to add a new item, do as follows:
122
     * <pre>
123
     *    getWirelessTechnology().add(newItem);
124
     * </pre>
125
     * 
126
     * 
127
     * <p>
128
     * Objects of the following type(s) are allowed in the list
129
     * {@link String }
130
     * 
131
     * 
132
     */
133
    public List<String> getWirelessTechnology() {
134
        if (wirelessTechnology == null) {
135
            wirelessTechnology = new ArrayList<String>();
136
        }
137
        return this.wirelessTechnology;
138
    }
139
 
140
}