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 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
 
17
 
18
/**
19
 * <p>Java class for anonymous complex type.
20
 * 
21
 * <p>The following schema fragment specifies the expected content contained within this class.
22
 * 
23
 * <pre>
24
 * &lt;complexType>
25
 *   &lt;complexContent>
26
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
27
 *       &lt;sequence>
28
 *         &lt;element name="CameraType" minOccurs="0">
29
 *           &lt;simpleType>
30
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
31
 *               &lt;enumeration value="film-camera"/>
32
 *               &lt;enumeration value="digital-camera"/>
33
 *               &lt;enumeration value="camcorder"/>
34
 *               &lt;enumeration value="universal"/>
35
 *             &lt;/restriction>
36
 *           &lt;/simpleType>
37
 *         &lt;/element>
38
 *         &lt;element name="MeterType" minOccurs="0">
39
 *           &lt;simpleType>
40
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
41
 *               &lt;enumeration value="ambient"/>
42
 *               &lt;enumeration value="flash"/>
43
 *               &lt;enumeration value="ambient-and-flash"/>
44
 *               &lt;enumeration value="spot"/>
45
 *               &lt;enumeration value="color"/>
46
 *             &lt;/restriction>
47
 *           &lt;/simpleType>
48
 *         &lt;/element>
49
 *         &lt;element name="MeterDisplay" minOccurs="0">
50
 *           &lt;simpleType>
51
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
52
 *               &lt;enumeration value="analog"/>
53
 *               &lt;enumeration value="digital"/>
54
 *               &lt;enumeration value="led"/>
55
 *               &lt;enumeration value="match-needle"/>
56
 *             &lt;/restriction>
57
 *           &lt;/simpleType>
58
 *         &lt;/element>
59
 *       &lt;/sequence>
60
 *     &lt;/restriction>
61
 *   &lt;/complexContent>
62
 * &lt;/complexType>
63
 * </pre>
64
 * 
65
 * 
66
 */
67
@XmlAccessorType(XmlAccessType.FIELD)
68
@XmlType(name = "", propOrder = {
69
    "cameraType",
70
    "meterType",
71
    "meterDisplay"
72
})
73
@XmlRootElement(name = "LightMeter")
74
public class LightMeter {
75
 
76
    @XmlElement(name = "CameraType")
77
    protected String cameraType;
78
    @XmlElement(name = "MeterType")
79
    protected String meterType;
80
    @XmlElement(name = "MeterDisplay")
81
    protected String meterDisplay;
82
 
83
    /**
84
     * Gets the value of the cameraType property.
85
     * 
86
     * @return
87
     *     possible object is
88
     *     {@link String }
89
     *     
90
     */
91
    public String getCameraType() {
92
        return cameraType;
93
    }
94
 
95
    /**
96
     * Sets the value of the cameraType property.
97
     * 
98
     * @param value
99
     *     allowed object is
100
     *     {@link String }
101
     *     
102
     */
103
    public void setCameraType(String value) {
104
        this.cameraType = value;
105
    }
106
 
107
    /**
108
     * Gets the value of the meterType property.
109
     * 
110
     * @return
111
     *     possible object is
112
     *     {@link String }
113
     *     
114
     */
115
    public String getMeterType() {
116
        return meterType;
117
    }
118
 
119
    /**
120
     * Sets the value of the meterType property.
121
     * 
122
     * @param value
123
     *     allowed object is
124
     *     {@link String }
125
     *     
126
     */
127
    public void setMeterType(String value) {
128
        this.meterType = value;
129
    }
130
 
131
    /**
132
     * Gets the value of the meterDisplay property.
133
     * 
134
     * @return
135
     *     possible object is
136
     *     {@link String }
137
     *     
138
     */
139
    public String getMeterDisplay() {
140
        return meterDisplay;
141
    }
142
 
143
    /**
144
     * Sets the value of the meterDisplay property.
145
     * 
146
     * @param value
147
     *     allowed object is
148
     *     {@link String }
149
     *     
150
     */
151
    public void setMeterDisplay(String value) {
152
        this.meterDisplay = value;
153
    }
154
 
155
}