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.util.ArrayList;
12
import java.util.List;
13
import javax.xml.bind.annotation.XmlAccessType;
14
import javax.xml.bind.annotation.XmlAccessorType;
15
import javax.xml.bind.annotation.XmlElement;
16
import javax.xml.bind.annotation.XmlRootElement;
17
import javax.xml.bind.annotation.XmlType;
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 name="MicroscopeType" minOccurs="0">
31
 *           &lt;simpleType>
32
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
33
 *               &lt;enumeration value="digital-and-film-systems"/>
34
 *               &lt;enumeration value="educational-and-hobby"/>
35
 *               &lt;enumeration value="laboratory"/>
36
 *               &lt;enumeration value="stereo"/>
37
 *               &lt;enumeration value="other"/>
38
 *             &lt;/restriction>
39
 *           &lt;/simpleType>
40
 *         &lt;/element>
41
 *         &lt;element name="Features" type="{http://www.w3.org/2001/XMLSchema}anyType" maxOccurs="5" minOccurs="0"/>
42
 *       &lt;/sequence>
43
 *     &lt;/restriction>
44
 *   &lt;/complexContent>
45
 * &lt;/complexType>
46
 * </pre>
47
 * 
48
 * 
49
 */
50
@XmlAccessorType(XmlAccessType.FIELD)
51
@XmlType(name = "", propOrder = {
52
    "microscopeType",
53
    "features"
54
})
55
@XmlRootElement(name = "Microscope")
56
public class Microscope {
57
 
58
    @XmlElement(name = "MicroscopeType")
59
    protected String microscopeType;
60
    @XmlElement(name = "Features")
61
    protected List<Object> features;
62
 
63
    /**
64
     * Gets the value of the microscopeType property.
65
     * 
66
     * @return
67
     *     possible object is
68
     *     {@link String }
69
     *     
70
     */
71
    public String getMicroscopeType() {
72
        return microscopeType;
73
    }
74
 
75
    /**
76
     * Sets the value of the microscopeType property.
77
     * 
78
     * @param value
79
     *     allowed object is
80
     *     {@link String }
81
     *     
82
     */
83
    public void setMicroscopeType(String value) {
84
        this.microscopeType = value;
85
    }
86
 
87
    /**
88
     * Gets the value of the features property.
89
     * 
90
     * <p>
91
     * This accessor method returns a reference to the live list,
92
     * not a snapshot. Therefore any modification you make to the
93
     * returned list will be present inside the JAXB object.
94
     * This is why there is not a <CODE>set</CODE> method for the features property.
95
     * 
96
     * <p>
97
     * For example, to add a new item, do as follows:
98
     * <pre>
99
     *    getFeatures().add(newItem);
100
     * </pre>
101
     * 
102
     * 
103
     * <p>
104
     * Objects of the following type(s) are allowed in the list
105
     * {@link Object }
106
     * 
107
     * 
108
     */
109
    public List<Object> getFeatures() {
110
        if (features == null) {
111
            features = new ArrayList<Object>();
112
        }
113
        return this.features;
114
    }
115
 
116
}