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
 
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="AnalogFormats" minOccurs="0">
31
 *           &lt;simpleType>
32
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
33
 *               &lt;enumeration value="8mm-camcorder-tapes"/>
34
 *               &lt;enumeration value="beta"/>
35
 *               &lt;enumeration value="hi-8-cassettes"/>
36
 *               &lt;enumeration value="s-vhs"/>
37
 *               &lt;enumeration value="s-vhs-c"/>
38
 *               &lt;enumeration value="vhs"/>
39
 *               &lt;enumeration value="vhs-c"/>
40
 *               &lt;enumeration value="reel-tapes"/>
41
 *             &lt;/restriction>
42
 *           &lt;/simpleType>
43
 *         &lt;/element>
44
 *         &lt;element name="DigitalFormats" minOccurs="0">
45
 *           &lt;simpleType>
46
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
47
 *               &lt;enumeration value="minidv-cassettes"/>
48
 *               &lt;enumeration value="full-size-dv-cassettes"/>
49
 *               &lt;enumeration value="micromv"/>
50
 *               &lt;enumeration value="dvd"/>
51
 *               &lt;enumeration value="digital-beta-cassettes"/>
52
 *             &lt;/restriction>
53
 *           &lt;/simpleType>
54
 *         &lt;/element>
55
 *         &lt;element name="MotionFilmFormats" minOccurs="0">
56
 *           &lt;simpleType>
57
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
58
 *               &lt;enumeration value="8mm-film"/>
59
 *               &lt;enumeration value="super-8mm-film"/>
60
 *               &lt;enumeration value="16mm-film"/>
61
 *               &lt;enumeration value="super-16mm-film"/>
62
 *               &lt;enumeration value="35mm-film"/>
63
 *               &lt;enumeration value="65mm-film"/>
64
 *               &lt;enumeration value="70mm-film"/>
65
 *               &lt;enumeration value="other-film-formats"/>
66
 *             &lt;/restriction>
67
 *           &lt;/simpleType>
68
 *         &lt;/element>
69
 *         &lt;element name="MediaColor" minOccurs="0">
70
 *           &lt;simpleType>
71
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
72
 *               &lt;enumeration value="unknown_chromatism"/>
73
 *               &lt;enumeration value="black-and-white"/>
74
 *               &lt;enumeration value="color"/>
75
 *               &lt;enumeration value="tinted"/>
76
 *               &lt;enumeration value="colorized"/>
77
 *               &lt;enumeration value="color/black_and_white"/>
78
 *             &lt;/restriction>
79
 *           &lt;/simpleType>
80
 *         &lt;/element>
81
 *         &lt;element name="Count" type="{http://www.w3.org/2001/XMLSchema}positiveInteger" minOccurs="0"/>
82
 *       &lt;/sequence>
83
 *     &lt;/restriction>
84
 *   &lt;/complexContent>
85
 * &lt;/complexType>
86
 * </pre>
87
 * 
88
 * 
89
 */
90
@XmlAccessorType(XmlAccessType.FIELD)
91
@XmlType(name = "", propOrder = {
92
    "analogFormats",
93
    "digitalFormats",
94
    "motionFilmFormats",
95
    "mediaColor",
96
    "count"
97
})
98
@XmlRootElement(name = "BlankMedia")
99
public class BlankMedia {
100
 
101
    @XmlElement(name = "AnalogFormats")
102
    protected String analogFormats;
103
    @XmlElement(name = "DigitalFormats")
104
    protected String digitalFormats;
105
    @XmlElement(name = "MotionFilmFormats")
106
    protected String motionFilmFormats;
107
    @XmlElement(name = "MediaColor")
108
    protected String mediaColor;
109
    @XmlElement(name = "Count")
110
    @XmlSchemaType(name = "positiveInteger")
111
    protected BigInteger count;
112
 
113
    /**
114
     * Gets the value of the analogFormats property.
115
     * 
116
     * @return
117
     *     possible object is
118
     *     {@link String }
119
     *     
120
     */
121
    public String getAnalogFormats() {
122
        return analogFormats;
123
    }
124
 
125
    /**
126
     * Sets the value of the analogFormats property.
127
     * 
128
     * @param value
129
     *     allowed object is
130
     *     {@link String }
131
     *     
132
     */
133
    public void setAnalogFormats(String value) {
134
        this.analogFormats = value;
135
    }
136
 
137
    /**
138
     * Gets the value of the digitalFormats property.
139
     * 
140
     * @return
141
     *     possible object is
142
     *     {@link String }
143
     *     
144
     */
145
    public String getDigitalFormats() {
146
        return digitalFormats;
147
    }
148
 
149
    /**
150
     * Sets the value of the digitalFormats property.
151
     * 
152
     * @param value
153
     *     allowed object is
154
     *     {@link String }
155
     *     
156
     */
157
    public void setDigitalFormats(String value) {
158
        this.digitalFormats = value;
159
    }
160
 
161
    /**
162
     * Gets the value of the motionFilmFormats property.
163
     * 
164
     * @return
165
     *     possible object is
166
     *     {@link String }
167
     *     
168
     */
169
    public String getMotionFilmFormats() {
170
        return motionFilmFormats;
171
    }
172
 
173
    /**
174
     * Sets the value of the motionFilmFormats property.
175
     * 
176
     * @param value
177
     *     allowed object is
178
     *     {@link String }
179
     *     
180
     */
181
    public void setMotionFilmFormats(String value) {
182
        this.motionFilmFormats = value;
183
    }
184
 
185
    /**
186
     * Gets the value of the mediaColor property.
187
     * 
188
     * @return
189
     *     possible object is
190
     *     {@link String }
191
     *     
192
     */
193
    public String getMediaColor() {
194
        return mediaColor;
195
    }
196
 
197
    /**
198
     * Sets the value of the mediaColor property.
199
     * 
200
     * @param value
201
     *     allowed object is
202
     *     {@link String }
203
     *     
204
     */
205
    public void setMediaColor(String value) {
206
        this.mediaColor = value;
207
    }
208
 
209
    /**
210
     * Gets the value of the count property.
211
     * 
212
     * @return
213
     *     possible object is
214
     *     {@link BigInteger }
215
     *     
216
     */
217
    public BigInteger getCount() {
218
        return count;
219
    }
220
 
221
    /**
222
     * Sets the value of the count property.
223
     * 
224
     * @param value
225
     *     allowed object is
226
     *     {@link BigInteger }
227
     *     
228
     */
229
    public void setCount(BigInteger value) {
230
        this.count = value;
231
    }
232
 
233
}