Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
7481 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.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 name="CableLength" type="{}LengthDimension" minOccurs="0"/>
35
 *         &lt;element name="OperatingSystem" type="{}MediumStringNotNull" maxOccurs="5" minOccurs="0"/>
36
 *         &lt;element name="PowerSource" type="{}FortyStringNotNull" minOccurs="0"/>
37
 *         &lt;element name="ScreenSize" type="{}LengthDimension" minOccurs="0"/>
38
 *         &lt;element ref="{}TotalEthernetPorts" minOccurs="0"/>
39
 *         &lt;element name="WirelessType" type="{}WirelessTypeValues" minOccurs="0"/>
40
 *       &lt;/sequence>
41
 *     &lt;/restriction>
42
 *   &lt;/complexContent>
43
 * &lt;/complexType>
44
 * </pre>
45
 * 
46
 * 
47
 */
48
@XmlAccessorType(XmlAccessType.FIELD)
49
@XmlType(name = "", propOrder = {
50
    "cableLength",
51
    "operatingSystem",
52
    "powerSource",
53
    "screenSize",
54
    "totalEthernetPorts",
55
    "wirelessType"
56
})
57
@XmlRootElement(name = "GPSOrNavigationAccessory")
58
public class GPSOrNavigationAccessory {
59
 
60
    @XmlElement(name = "CableLength")
61
    protected LengthDimension cableLength;
62
    @XmlElement(name = "OperatingSystem")
63
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
64
    protected List<String> operatingSystem;
65
    @XmlElement(name = "PowerSource")
66
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
67
    protected String powerSource;
68
    @XmlElement(name = "ScreenSize")
69
    protected LengthDimension screenSize;
70
    @XmlElement(name = "TotalEthernetPorts")
71
    @XmlSchemaType(name = "positiveInteger")
72
    protected BigInteger totalEthernetPorts;
73
    @XmlElement(name = "WirelessType")
74
    protected String wirelessType;
75
 
76
    /**
77
     * Gets the value of the cableLength property.
78
     * 
79
     * @return
80
     *     possible object is
81
     *     {@link LengthDimension }
82
     *     
83
     */
84
    public LengthDimension getCableLength() {
85
        return cableLength;
86
    }
87
 
88
    /**
89
     * Sets the value of the cableLength property.
90
     * 
91
     * @param value
92
     *     allowed object is
93
     *     {@link LengthDimension }
94
     *     
95
     */
96
    public void setCableLength(LengthDimension value) {
97
        this.cableLength = value;
98
    }
99
 
100
    /**
101
     * Gets the value of the operatingSystem property.
102
     * 
103
     * <p>
104
     * This accessor method returns a reference to the live list,
105
     * not a snapshot. Therefore any modification you make to the
106
     * returned list will be present inside the JAXB object.
107
     * This is why there is not a <CODE>set</CODE> method for the operatingSystem property.
108
     * 
109
     * <p>
110
     * For example, to add a new item, do as follows:
111
     * <pre>
112
     *    getOperatingSystem().add(newItem);
113
     * </pre>
114
     * 
115
     * 
116
     * <p>
117
     * Objects of the following type(s) are allowed in the list
118
     * {@link String }
119
     * 
120
     * 
121
     */
122
    public List<String> getOperatingSystem() {
123
        if (operatingSystem == null) {
124
            operatingSystem = new ArrayList<String>();
125
        }
126
        return this.operatingSystem;
127
    }
128
 
129
    /**
130
     * Gets the value of the powerSource property.
131
     * 
132
     * @return
133
     *     possible object is
134
     *     {@link String }
135
     *     
136
     */
137
    public String getPowerSource() {
138
        return powerSource;
139
    }
140
 
141
    /**
142
     * Sets the value of the powerSource property.
143
     * 
144
     * @param value
145
     *     allowed object is
146
     *     {@link String }
147
     *     
148
     */
149
    public void setPowerSource(String value) {
150
        this.powerSource = value;
151
    }
152
 
153
    /**
154
     * Gets the value of the screenSize property.
155
     * 
156
     * @return
157
     *     possible object is
158
     *     {@link LengthDimension }
159
     *     
160
     */
161
    public LengthDimension getScreenSize() {
162
        return screenSize;
163
    }
164
 
165
    /**
166
     * Sets the value of the screenSize property.
167
     * 
168
     * @param value
169
     *     allowed object is
170
     *     {@link LengthDimension }
171
     *     
172
     */
173
    public void setScreenSize(LengthDimension value) {
174
        this.screenSize = value;
175
    }
176
 
177
    /**
178
     * Gets the value of the totalEthernetPorts property.
179
     * 
180
     * @return
181
     *     possible object is
182
     *     {@link BigInteger }
183
     *     
184
     */
185
    public BigInteger getTotalEthernetPorts() {
186
        return totalEthernetPorts;
187
    }
188
 
189
    /**
190
     * Sets the value of the totalEthernetPorts property.
191
     * 
192
     * @param value
193
     *     allowed object is
194
     *     {@link BigInteger }
195
     *     
196
     */
197
    public void setTotalEthernetPorts(BigInteger value) {
198
        this.totalEthernetPorts = value;
199
    }
200
 
201
    /**
202
     * Gets the value of the wirelessType property.
203
     * 
204
     * @return
205
     *     possible object is
206
     *     {@link String }
207
     *     
208
     */
209
    public String getWirelessType() {
210
        return wirelessType;
211
    }
212
 
213
    /**
214
     * Sets the value of the wirelessType property.
215
     * 
216
     * @param value
217
     *     allowed object is
218
     *     {@link String }
219
     *     
220
     */
221
    public void setWirelessType(String value) {
222
        this.wirelessType = value;
223
    }
224
 
225
}