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 javax.xml.bind.annotation.XmlAccessType;
12
import javax.xml.bind.annotation.XmlAccessorType;
13
import javax.xml.bind.annotation.XmlElement;
14
import javax.xml.bind.annotation.XmlRootElement;
15
import javax.xml.bind.annotation.XmlType;
16
import javax.xml.bind.annotation.adapters.NormalizedStringAdapter;
17
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
18
 
19
 
20
/**
21
 * <p>Java class for anonymous complex type.
22
 * 
23
 * <p>The following schema fragment specifies the expected content contained within this class.
24
 * 
25
 * <pre>
26
 * &lt;complexType>
27
 *   &lt;complexContent>
28
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
29
 *       &lt;sequence>
30
 *         &lt;element ref="{}AntennaDescription" minOccurs="0"/>
31
 *         &lt;element ref="{}AntennaLocation" minOccurs="0"/>
32
 *       &lt;/sequence>
33
 *     &lt;/restriction>
34
 *   &lt;/complexContent>
35
 * &lt;/complexType>
36
 * </pre>
37
 * 
38
 * 
39
 */
40
@XmlAccessorType(XmlAccessType.FIELD)
41
@XmlType(name = "", propOrder = {
42
    "antennaDescription",
43
    "antennaLocation"
44
})
45
@XmlRootElement(name = "Antenna")
46
public class Antenna {
47
 
48
    @XmlElement(name = "AntennaDescription")
49
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
50
    protected String antennaDescription;
51
    @XmlElement(name = "AntennaLocation")
52
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
53
    protected String antennaLocation;
54
 
55
    /**
56
     * Gets the value of the antennaDescription property.
57
     * 
58
     * @return
59
     *     possible object is
60
     *     {@link String }
61
     *     
62
     */
63
    public String getAntennaDescription() {
64
        return antennaDescription;
65
    }
66
 
67
    /**
68
     * Sets the value of the antennaDescription property.
69
     * 
70
     * @param value
71
     *     allowed object is
72
     *     {@link String }
73
     *     
74
     */
75
    public void setAntennaDescription(String value) {
76
        this.antennaDescription = value;
77
    }
78
 
79
    /**
80
     * Gets the value of the antennaLocation property.
81
     * 
82
     * @return
83
     *     possible object is
84
     *     {@link String }
85
     *     
86
     */
87
    public String getAntennaLocation() {
88
        return antennaLocation;
89
    }
90
 
91
    /**
92
     * Sets the value of the antennaLocation property.
93
     * 
94
     * @param value
95
     *     allowed object is
96
     *     {@link String }
97
     *     
98
     */
99
    public void setAntennaLocation(String value) {
100
        this.antennaLocation = value;
101
    }
102
 
103
}