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 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.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="PaperType" minOccurs="0">* <simpleType>* <restriction base="{http://www.w3.org/2001/XMLSchema}string">* <enumeration value="black-and-white"/>* <enumeration value="color-negative"/>* <enumeration value="color-reversal"/>* <enumeration value="ra-chemistry"/>* <enumeration value="other"/>* </restriction>* </simpleType>* </element>* <element name="PaperBase" minOccurs="0">* <simpleType>* <restriction base="{http://www.w3.org/2001/XMLSchema}string">* <enumeration value="polyester-based"/>* <enumeration value="fiber-based"/>* <enumeration value="resin-coated"/>* <enumeration value="other"/>* </restriction>* </simpleType>* </element>* <element name="PaperSurface" minOccurs="0">* <simpleType>* <restriction base="{http://www.w3.org/2001/XMLSchema}string">* <enumeration value="glossy"/>* <enumeration value="semi-glossy"/>* <enumeration value="matt"/>* <enumeration value="semi-matt"/>* <enumeration value="pearl"/>* <enumeration value="luster"/>* <enumeration value="satin"/>* <enumeration value="other"/>* </restriction>* </simpleType>* </element>* <element name="PaperGrade" minOccurs="0">* <simpleType>* <restriction base="{http://www.w3.org/2001/XMLSchema}string">* <enumeration value="grade-0"/>* <enumeration value="grade-1"/>* <enumeration value="grade-2"/>* <enumeration value="grade-3"/>* <enumeration value="grade-4"/>* <enumeration value="multigrade"/>* </restriction>* </simpleType>* </element>* <element name="PaperSize" minOccurs="0">* <simpleType>* <restriction base="{http://www.w3.org/2001/XMLSchema}string">* <enumeration value="10x10"/>* <enumeration value="10x12"/>* <enumeration value="10x20"/>* <enumeration value="11x14"/>* <enumeration value="12x17"/>* <enumeration value="16x20"/>* <enumeration value="20x24"/>* <enumeration value="20x30"/>* <enumeration value="24x30"/>* <enumeration value="3.5x5"/>* <enumeration value="30x40"/>* <enumeration value="4x5"/>* <enumeration value="4x6"/>* <enumeration value="5x7"/>* <enumeration value="8.5x11"/>* <enumeration value="8x10"/>* <enumeration value="roll"/>* <enumeration value="other"/>* </restriction>* </simpleType>* </element>* </sequence>* </restriction>* </complexContent>* </complexType>* </pre>***/@XmlAccessorType(XmlAccessType.FIELD)@XmlType(name = "", propOrder = {"paperType","paperBase","paperSurface","paperGrade","paperSize"})@XmlRootElement(name = "PhotoPaper")public class PhotoPaper {@XmlElement(name = "PaperType")protected String paperType;@XmlElement(name = "PaperBase")protected String paperBase;@XmlElement(name = "PaperSurface")protected String paperSurface;@XmlElement(name = "PaperGrade")protected String paperGrade;@XmlElement(name = "PaperSize")protected String paperSize;/*** Gets the value of the paperType property.** @return* possible object is* {@link String }**/public String getPaperType() {return paperType;}/*** Sets the value of the paperType property.** @param value* allowed object is* {@link String }**/public void setPaperType(String value) {this.paperType = value;}/*** Gets the value of the paperBase property.** @return* possible object is* {@link String }**/public String getPaperBase() {return paperBase;}/*** Sets the value of the paperBase property.** @param value* allowed object is* {@link String }**/public void setPaperBase(String value) {this.paperBase = value;}/*** Gets the value of the paperSurface property.** @return* possible object is* {@link String }**/public String getPaperSurface() {return paperSurface;}/*** Sets the value of the paperSurface property.** @param value* allowed object is* {@link String }**/public void setPaperSurface(String value) {this.paperSurface = value;}/*** Gets the value of the paperGrade property.** @return* possible object is* {@link String }**/public String getPaperGrade() {return paperGrade;}/*** Sets the value of the paperGrade property.** @param value* allowed object is* {@link String }**/public void setPaperGrade(String value) {this.paperGrade = value;}/*** Gets the value of the paperSize property.** @return* possible object is* {@link String }**/public String getPaperSize() {return paperSize;}/*** Sets the value of the paperSize property.** @param value* allowed object is* {@link String }**/public void setPaperSize(String value) {this.paperSize = value;}}