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="ProjectionType" minOccurs="0">
29
 *           &lt;simpleType>
30
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
31
 *               &lt;enumeration value="slide-projectors"/>
32
 *               &lt;enumeration value="video-projectors"/>
33
 *               &lt;enumeration value="large-format-projectors"/>
34
 *               &lt;enumeration value="medium-format-projectors"/>
35
 *               &lt;enumeration value="multimedia-projectors"/>
36
 *               &lt;enumeration value="opaque-projectors"/>
37
 *               &lt;enumeration value="lightboxes"/>
38
 *               &lt;enumeration value="viewers"/>
39
 *               &lt;enumeration value="loupes"/>
40
 *             &lt;/restriction>
41
 *           &lt;/simpleType>
42
 *         &lt;/element>
43
 *         &lt;element name="LoupeMagnification" minOccurs="0">
44
 *           &lt;simpleType>
45
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
46
 *               &lt;enumeration value="up-to-4x"/>
47
 *               &lt;enumeration value="5x-9x"/>
48
 *               &lt;enumeration value="10x-15x"/>
49
 *               &lt;enumeration value="above-15x"/>
50
 *               &lt;enumeration value="zoom"/>
51
 *             &lt;/restriction>
52
 *           &lt;/simpleType>
53
 *         &lt;/element>
54
 *         &lt;element name="ProjectorLenses" minOccurs="0">
55
 *           &lt;simpleType>
56
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
57
 *               &lt;enumeration value="35mm"/>
58
 *               &lt;enumeration value="large-format"/>
59
 *               &lt;enumeration value="medium-format"/>
60
 *               &lt;enumeration value="normal"/>
61
 *               &lt;enumeration value="telephoto"/>
62
 *               &lt;enumeration value="wide-angle"/>
63
 *               &lt;enumeration value="zoom"/>
64
 *               &lt;enumeration value="other-projector-lenses"/>
65
 *             &lt;/restriction>
66
 *           &lt;/simpleType>
67
 *         &lt;/element>
68
 *         &lt;element name="ProjectionScreens" minOccurs="0">
69
 *           &lt;simpleType>
70
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
71
 *               &lt;enumeration value="fast-fold-screens"/>
72
 *               &lt;enumeration value="free-standing-floor-screens"/>
73
 *               &lt;enumeration value="rear-projection-screens"/>
74
 *               &lt;enumeration value="tabletop-screens"/>
75
 *               &lt;enumeration value="tripod-mounted-screens"/>
76
 *               &lt;enumeration value="wall-and-ceiling-electric-screens"/>
77
 *               &lt;enumeration value="wall-and-ceiling-screens"/>
78
 *               &lt;enumeration value="other-projection-screens"/>
79
 *             &lt;/restriction>
80
 *           &lt;/simpleType>
81
 *         &lt;/element>
82
 *         &lt;element name="AudioVisualProductAccessories" minOccurs="0">
83
 *           &lt;simpleType>
84
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
85
 *               &lt;enumeration value="dissolve-and-control-units"/>
86
 *               &lt;enumeration value="lamps"/>
87
 *               &lt;enumeration value="stands"/>
88
 *               &lt;enumeration value="mounting-equipment"/>
89
 *               &lt;enumeration value="other-accessories"/>
90
 *               &lt;enumeration value="projector-trays-general"/>
91
 *               &lt;enumeration value="35mm-slide-projector-trays"/>
92
 *               &lt;enumeration value="medium-format-slide-projector-trays"/>
93
 *             &lt;/restriction>
94
 *           &lt;/simpleType>
95
 *         &lt;/element>
96
 *       &lt;/sequence>
97
 *     &lt;/restriction>
98
 *   &lt;/complexContent>
99
 * &lt;/complexType>
100
 * </pre>
101
 * 
102
 * 
103
 */
104
@XmlAccessorType(XmlAccessType.FIELD)
105
@XmlType(name = "", propOrder = {
106
    "projectionType",
107
    "loupeMagnification",
108
    "projectorLenses",
109
    "projectionScreens",
110
    "audioVisualProductAccessories"
111
})
112
@XmlRootElement(name = "Projection")
113
public class Projection {
114
 
115
    @XmlElement(name = "ProjectionType")
116
    protected String projectionType;
117
    @XmlElement(name = "LoupeMagnification")
118
    protected String loupeMagnification;
119
    @XmlElement(name = "ProjectorLenses")
120
    protected String projectorLenses;
121
    @XmlElement(name = "ProjectionScreens")
122
    protected String projectionScreens;
123
    @XmlElement(name = "AudioVisualProductAccessories")
124
    protected String audioVisualProductAccessories;
125
 
126
    /**
127
     * Gets the value of the projectionType property.
128
     * 
129
     * @return
130
     *     possible object is
131
     *     {@link String }
132
     *     
133
     */
134
    public String getProjectionType() {
135
        return projectionType;
136
    }
137
 
138
    /**
139
     * Sets the value of the projectionType property.
140
     * 
141
     * @param value
142
     *     allowed object is
143
     *     {@link String }
144
     *     
145
     */
146
    public void setProjectionType(String value) {
147
        this.projectionType = value;
148
    }
149
 
150
    /**
151
     * Gets the value of the loupeMagnification property.
152
     * 
153
     * @return
154
     *     possible object is
155
     *     {@link String }
156
     *     
157
     */
158
    public String getLoupeMagnification() {
159
        return loupeMagnification;
160
    }
161
 
162
    /**
163
     * Sets the value of the loupeMagnification property.
164
     * 
165
     * @param value
166
     *     allowed object is
167
     *     {@link String }
168
     *     
169
     */
170
    public void setLoupeMagnification(String value) {
171
        this.loupeMagnification = value;
172
    }
173
 
174
    /**
175
     * Gets the value of the projectorLenses property.
176
     * 
177
     * @return
178
     *     possible object is
179
     *     {@link String }
180
     *     
181
     */
182
    public String getProjectorLenses() {
183
        return projectorLenses;
184
    }
185
 
186
    /**
187
     * Sets the value of the projectorLenses property.
188
     * 
189
     * @param value
190
     *     allowed object is
191
     *     {@link String }
192
     *     
193
     */
194
    public void setProjectorLenses(String value) {
195
        this.projectorLenses = value;
196
    }
197
 
198
    /**
199
     * Gets the value of the projectionScreens property.
200
     * 
201
     * @return
202
     *     possible object is
203
     *     {@link String }
204
     *     
205
     */
206
    public String getProjectionScreens() {
207
        return projectionScreens;
208
    }
209
 
210
    /**
211
     * Sets the value of the projectionScreens property.
212
     * 
213
     * @param value
214
     *     allowed object is
215
     *     {@link String }
216
     *     
217
     */
218
    public void setProjectionScreens(String value) {
219
        this.projectionScreens = value;
220
    }
221
 
222
    /**
223
     * Gets the value of the audioVisualProductAccessories property.
224
     * 
225
     * @return
226
     *     possible object is
227
     *     {@link String }
228
     *     
229
     */
230
    public String getAudioVisualProductAccessories() {
231
        return audioVisualProductAccessories;
232
    }
233
 
234
    /**
235
     * Sets the value of the audioVisualProductAccessories property.
236
     * 
237
     * @param value
238
     *     allowed object is
239
     *     {@link String }
240
     *     
241
     */
242
    public void setAudioVisualProductAccessories(String value) {
243
        this.audioVisualProductAccessories = value;
244
    }
245
 
246
}