Blame | Last modification | View Log | RSS feed
//// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>// Any modifications to this file will be lost upon recompilation of the source schema.// Generated on: 2013.03.04 at 03:49:29 PM IST//package in.shop2020.feeds.products;import java.math.BigInteger;import javax.xml.bind.annotation.XmlAccessType;import javax.xml.bind.annotation.XmlAccessorType;import javax.xml.bind.annotation.XmlElement;import javax.xml.bind.annotation.XmlRootElement;import javax.xml.bind.annotation.XmlSchemaType;import javax.xml.bind.annotation.XmlType;/*** <p>Java class for anonymous complex type.** <p>The following schema fragment specifies the expected content contained within this class.** <pre>* <complexType>* <complexContent>* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">* <sequence>* <element name="AnalogFormats" minOccurs="0">* <simpleType>* <restriction base="{http://www.w3.org/2001/XMLSchema}string">* <enumeration value="8mm-camcorder-tapes"/>* <enumeration value="beta"/>* <enumeration value="hi-8-cassettes"/>* <enumeration value="s-vhs"/>* <enumeration value="s-vhs-c"/>* <enumeration value="vhs"/>* <enumeration value="vhs-c"/>* <enumeration value="reel-tapes"/>* </restriction>* </simpleType>* </element>* <element name="DigitalFormats" minOccurs="0">* <simpleType>* <restriction base="{http://www.w3.org/2001/XMLSchema}string">* <enumeration value="minidv-cassettes"/>* <enumeration value="full-size-dv-cassettes"/>* <enumeration value="micromv"/>* <enumeration value="dvd"/>* <enumeration value="digital-beta-cassettes"/>* </restriction>* </simpleType>* </element>* <element name="MotionFilmFormats" minOccurs="0">* <simpleType>* <restriction base="{http://www.w3.org/2001/XMLSchema}string">* <enumeration value="8mm-film"/>* <enumeration value="super-8mm-film"/>* <enumeration value="16mm-film"/>* <enumeration value="super-16mm-film"/>* <enumeration value="35mm-film"/>* <enumeration value="65mm-film"/>* <enumeration value="70mm-film"/>* <enumeration value="other-film-formats"/>* </restriction>* </simpleType>* </element>* <element name="MediaColor" minOccurs="0">* <simpleType>* <restriction base="{http://www.w3.org/2001/XMLSchema}string">* <enumeration value="unknown_chromatism"/>* <enumeration value="black-and-white"/>* <enumeration value="color"/>* <enumeration value="tinted"/>* <enumeration value="colorized"/>* <enumeration value="color/black_and_white"/>* </restriction>* </simpleType>* </element>* <element name="Count" type="{http://www.w3.org/2001/XMLSchema}positiveInteger" minOccurs="0"/>* </sequence>* </restriction>* </complexContent>* </complexType>* </pre>***/@XmlAccessorType(XmlAccessType.FIELD)@XmlType(name = "", propOrder = {"analogFormats","digitalFormats","motionFilmFormats","mediaColor","count"})@XmlRootElement(name = "BlankMedia")public class BlankMedia {@XmlElement(name = "AnalogFormats")protected String analogFormats;@XmlElement(name = "DigitalFormats")protected String digitalFormats;@XmlElement(name = "MotionFilmFormats")protected String motionFilmFormats;@XmlElement(name = "MediaColor")protected String mediaColor;@XmlElement(name = "Count")@XmlSchemaType(name = "positiveInteger")protected BigInteger count;/*** Gets the value of the analogFormats property.** @return* possible object is* {@link String }**/public String getAnalogFormats() {return analogFormats;}/*** Sets the value of the analogFormats property.** @param value* allowed object is* {@link String }**/public void setAnalogFormats(String value) {this.analogFormats = value;}/*** Gets the value of the digitalFormats property.** @return* possible object is* {@link String }**/public String getDigitalFormats() {return digitalFormats;}/*** Sets the value of the digitalFormats property.** @param value* allowed object is* {@link String }**/public void setDigitalFormats(String value) {this.digitalFormats = value;}/*** Gets the value of the motionFilmFormats property.** @return* possible object is* {@link String }**/public String getMotionFilmFormats() {return motionFilmFormats;}/*** Sets the value of the motionFilmFormats property.** @param value* allowed object is* {@link String }**/public void setMotionFilmFormats(String value) {this.motionFilmFormats = value;}/*** Gets the value of the mediaColor property.** @return* possible object is* {@link String }**/public String getMediaColor() {return mediaColor;}/*** Sets the value of the mediaColor property.** @param value* allowed object is* {@link String }**/public void setMediaColor(String value) {this.mediaColor = value;}/*** Gets the value of the count property.** @return* possible object is* {@link BigInteger }**/public BigInteger getCount() {return count;}/*** Sets the value of the count property.** @param value* allowed object is* {@link BigInteger }**/public void setCount(BigInteger value) {this.count = value;}}