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="{}InternetApplications" maxOccurs="5" minOccurs="0"/>
35
 *         &lt;element ref="{}TotalCoaxialInputs" minOccurs="0"/>
36
 *         &lt;element name="TotalCompositePorts" type="{http://www.w3.org/2001/XMLSchema}positiveInteger" minOccurs="0"/>
37
 *         &lt;element ref="{}TotalEthernetPorts" minOccurs="0"/>
38
 *         &lt;element ref="{}TotalHdmiPorts" minOccurs="0"/>
39
 *       &lt;/sequence>
40
 *     &lt;/restriction>
41
 *   &lt;/complexContent>
42
 * &lt;/complexType>
43
 * </pre>
44
 * 
45
 * 
46
 */
47
@XmlAccessorType(XmlAccessType.FIELD)
48
@XmlType(name = "", propOrder = {
49
    "internetApplications",
50
    "totalCoaxialInputs",
51
    "totalCompositePorts",
52
    "totalEthernetPorts",
53
    "totalHdmiPorts"
54
})
55
@XmlRootElement(name = "Tuner")
56
public class Tuner {
57
 
58
    @XmlElement(name = "InternetApplications")
59
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
60
    protected List<String> internetApplications;
61
    @XmlElement(name = "TotalCoaxialInputs")
62
    @XmlSchemaType(name = "positiveInteger")
63
    protected BigInteger totalCoaxialInputs;
64
    @XmlElement(name = "TotalCompositePorts")
65
    @XmlSchemaType(name = "positiveInteger")
66
    protected BigInteger totalCompositePorts;
67
    @XmlElement(name = "TotalEthernetPorts")
68
    @XmlSchemaType(name = "positiveInteger")
69
    protected BigInteger totalEthernetPorts;
70
    @XmlElement(name = "TotalHdmiPorts")
71
    @XmlSchemaType(name = "positiveInteger")
72
    protected BigInteger totalHdmiPorts;
73
 
74
    /**
75
     * Gets the value of the internetApplications property.
76
     * 
77
     * <p>
78
     * This accessor method returns a reference to the live list,
79
     * not a snapshot. Therefore any modification you make to the
80
     * returned list will be present inside the JAXB object.
81
     * This is why there is not a <CODE>set</CODE> method for the internetApplications property.
82
     * 
83
     * <p>
84
     * For example, to add a new item, do as follows:
85
     * <pre>
86
     *    getInternetApplications().add(newItem);
87
     * </pre>
88
     * 
89
     * 
90
     * <p>
91
     * Objects of the following type(s) are allowed in the list
92
     * {@link String }
93
     * 
94
     * 
95
     */
96
    public List<String> getInternetApplications() {
97
        if (internetApplications == null) {
98
            internetApplications = new ArrayList<String>();
99
        }
100
        return this.internetApplications;
101
    }
102
 
103
    /**
104
     * Gets the value of the totalCoaxialInputs property.
105
     * 
106
     * @return
107
     *     possible object is
108
     *     {@link BigInteger }
109
     *     
110
     */
111
    public BigInteger getTotalCoaxialInputs() {
112
        return totalCoaxialInputs;
113
    }
114
 
115
    /**
116
     * Sets the value of the totalCoaxialInputs property.
117
     * 
118
     * @param value
119
     *     allowed object is
120
     *     {@link BigInteger }
121
     *     
122
     */
123
    public void setTotalCoaxialInputs(BigInteger value) {
124
        this.totalCoaxialInputs = value;
125
    }
126
 
127
    /**
128
     * Gets the value of the totalCompositePorts property.
129
     * 
130
     * @return
131
     *     possible object is
132
     *     {@link BigInteger }
133
     *     
134
     */
135
    public BigInteger getTotalCompositePorts() {
136
        return totalCompositePorts;
137
    }
138
 
139
    /**
140
     * Sets the value of the totalCompositePorts property.
141
     * 
142
     * @param value
143
     *     allowed object is
144
     *     {@link BigInteger }
145
     *     
146
     */
147
    public void setTotalCompositePorts(BigInteger value) {
148
        this.totalCompositePorts = value;
149
    }
150
 
151
    /**
152
     * Gets the value of the totalEthernetPorts property.
153
     * 
154
     * @return
155
     *     possible object is
156
     *     {@link BigInteger }
157
     *     
158
     */
159
    public BigInteger getTotalEthernetPorts() {
160
        return totalEthernetPorts;
161
    }
162
 
163
    /**
164
     * Sets the value of the totalEthernetPorts property.
165
     * 
166
     * @param value
167
     *     allowed object is
168
     *     {@link BigInteger }
169
     *     
170
     */
171
    public void setTotalEthernetPorts(BigInteger value) {
172
        this.totalEthernetPorts = value;
173
    }
174
 
175
    /**
176
     * Gets the value of the totalHdmiPorts property.
177
     * 
178
     * @return
179
     *     possible object is
180
     *     {@link BigInteger }
181
     *     
182
     */
183
    public BigInteger getTotalHdmiPorts() {
184
        return totalHdmiPorts;
185
    }
186
 
187
    /**
188
     * Sets the value of the totalHdmiPorts property.
189
     * 
190
     * @param value
191
     *     allowed object is
192
     *     {@link BigInteger }
193
     *     
194
     */
195
    public void setTotalHdmiPorts(BigInteger value) {
196
        this.totalHdmiPorts = value;
197
    }
198
 
199
}