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.math.BigInteger;
12
import javax.xml.bind.annotation.XmlAccessType;
13
import javax.xml.bind.annotation.XmlAccessorType;
14
import javax.xml.bind.annotation.XmlElement;
15
import javax.xml.bind.annotation.XmlRootElement;
16
import javax.xml.bind.annotation.XmlSchemaType;
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="{}NumberOfSpeakers" minOccurs="0"/>
33
 *         &lt;element name="ScreenSize" type="{}LengthDimension" minOccurs="0"/>
34
 *         &lt;element name="VehicleSpeakerSize" type="{}TwentyStringNotNull" minOccurs="0"/>
35
 *       &lt;/sequence>
36
 *     &lt;/restriction>
37
 *   &lt;/complexContent>
38
 * &lt;/complexType>
39
 * </pre>
40
 * 
41
 * 
42
 */
43
@XmlAccessorType(XmlAccessType.FIELD)
44
@XmlType(name = "", propOrder = {
45
    "numberOfSpeakers",
46
    "screenSize",
47
    "vehicleSpeakerSize"
48
})
49
@XmlRootElement(name = "CarAudioOrTheater")
50
public class CarAudioOrTheater {
51
 
52
    @XmlElement(name = "NumberOfSpeakers")
53
    @XmlSchemaType(name = "positiveInteger")
54
    protected BigInteger numberOfSpeakers;
55
    @XmlElement(name = "ScreenSize")
56
    protected LengthDimension screenSize;
57
    @XmlElement(name = "VehicleSpeakerSize")
58
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
59
    protected String vehicleSpeakerSize;
60
 
61
    /**
62
     * Gets the value of the numberOfSpeakers property.
63
     * 
64
     * @return
65
     *     possible object is
66
     *     {@link BigInteger }
67
     *     
68
     */
69
    public BigInteger getNumberOfSpeakers() {
70
        return numberOfSpeakers;
71
    }
72
 
73
    /**
74
     * Sets the value of the numberOfSpeakers property.
75
     * 
76
     * @param value
77
     *     allowed object is
78
     *     {@link BigInteger }
79
     *     
80
     */
81
    public void setNumberOfSpeakers(BigInteger value) {
82
        this.numberOfSpeakers = value;
83
    }
84
 
85
    /**
86
     * Gets the value of the screenSize property.
87
     * 
88
     * @return
89
     *     possible object is
90
     *     {@link LengthDimension }
91
     *     
92
     */
93
    public LengthDimension getScreenSize() {
94
        return screenSize;
95
    }
96
 
97
    /**
98
     * Sets the value of the screenSize property.
99
     * 
100
     * @param value
101
     *     allowed object is
102
     *     {@link LengthDimension }
103
     *     
104
     */
105
    public void setScreenSize(LengthDimension value) {
106
        this.screenSize = value;
107
    }
108
 
109
    /**
110
     * Gets the value of the vehicleSpeakerSize property.
111
     * 
112
     * @return
113
     *     possible object is
114
     *     {@link String }
115
     *     
116
     */
117
    public String getVehicleSpeakerSize() {
118
        return vehicleSpeakerSize;
119
    }
120
 
121
    /**
122
     * Sets the value of the vehicleSpeakerSize property.
123
     * 
124
     * @param value
125
     *     allowed object is
126
     *     {@link String }
127
     *     
128
     */
129
    public void setVehicleSpeakerSize(String value) {
130
        this.vehicleSpeakerSize = value;
131
    }
132
 
133
}