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="ProjectionType" minOccurs="0">* <simpleType>* <restriction base="{http://www.w3.org/2001/XMLSchema}string">* <enumeration value="slide-projectors"/>* <enumeration value="video-projectors"/>* <enumeration value="large-format-projectors"/>* <enumeration value="medium-format-projectors"/>* <enumeration value="multimedia-projectors"/>* <enumeration value="opaque-projectors"/>* <enumeration value="lightboxes"/>* <enumeration value="viewers"/>* <enumeration value="loupes"/>* </restriction>* </simpleType>* </element>* <element name="LoupeMagnification" minOccurs="0">* <simpleType>* <restriction base="{http://www.w3.org/2001/XMLSchema}string">* <enumeration value="up-to-4x"/>* <enumeration value="5x-9x"/>* <enumeration value="10x-15x"/>* <enumeration value="above-15x"/>* <enumeration value="zoom"/>* </restriction>* </simpleType>* </element>* <element name="ProjectorLenses" minOccurs="0">* <simpleType>* <restriction base="{http://www.w3.org/2001/XMLSchema}string">* <enumeration value="35mm"/>* <enumeration value="large-format"/>* <enumeration value="medium-format"/>* <enumeration value="normal"/>* <enumeration value="telephoto"/>* <enumeration value="wide-angle"/>* <enumeration value="zoom"/>* <enumeration value="other-projector-lenses"/>* </restriction>* </simpleType>* </element>* <element name="ProjectionScreens" minOccurs="0">* <simpleType>* <restriction base="{http://www.w3.org/2001/XMLSchema}string">* <enumeration value="fast-fold-screens"/>* <enumeration value="free-standing-floor-screens"/>* <enumeration value="rear-projection-screens"/>* <enumeration value="tabletop-screens"/>* <enumeration value="tripod-mounted-screens"/>* <enumeration value="wall-and-ceiling-electric-screens"/>* <enumeration value="wall-and-ceiling-screens"/>* <enumeration value="other-projection-screens"/>* </restriction>* </simpleType>* </element>* <element name="AudioVisualProductAccessories" minOccurs="0">* <simpleType>* <restriction base="{http://www.w3.org/2001/XMLSchema}string">* <enumeration value="dissolve-and-control-units"/>* <enumeration value="lamps"/>* <enumeration value="stands"/>* <enumeration value="mounting-equipment"/>* <enumeration value="other-accessories"/>* <enumeration value="projector-trays-general"/>* <enumeration value="35mm-slide-projector-trays"/>* <enumeration value="medium-format-slide-projector-trays"/>* </restriction>* </simpleType>* </element>* </sequence>* </restriction>* </complexContent>* </complexType>* </pre>***/@XmlAccessorType(XmlAccessType.FIELD)@XmlType(name = "", propOrder = {"projectionType","loupeMagnification","projectorLenses","projectionScreens","audioVisualProductAccessories"})@XmlRootElement(name = "Projection")public class Projection {@XmlElement(name = "ProjectionType")protected String projectionType;@XmlElement(name = "LoupeMagnification")protected String loupeMagnification;@XmlElement(name = "ProjectorLenses")protected String projectorLenses;@XmlElement(name = "ProjectionScreens")protected String projectionScreens;@XmlElement(name = "AudioVisualProductAccessories")protected String audioVisualProductAccessories;/*** Gets the value of the projectionType property.** @return* possible object is* {@link String }**/public String getProjectionType() {return projectionType;}/*** Sets the value of the projectionType property.** @param value* allowed object is* {@link String }**/public void setProjectionType(String value) {this.projectionType = value;}/*** Gets the value of the loupeMagnification property.** @return* possible object is* {@link String }**/public String getLoupeMagnification() {return loupeMagnification;}/*** Sets the value of the loupeMagnification property.** @param value* allowed object is* {@link String }**/public void setLoupeMagnification(String value) {this.loupeMagnification = value;}/*** Gets the value of the projectorLenses property.** @return* possible object is* {@link String }**/public String getProjectorLenses() {return projectorLenses;}/*** Sets the value of the projectorLenses property.** @param value* allowed object is* {@link String }**/public void setProjectorLenses(String value) {this.projectorLenses = value;}/*** Gets the value of the projectionScreens property.** @return* possible object is* {@link String }**/public String getProjectionScreens() {return projectionScreens;}/*** Sets the value of the projectionScreens property.** @param value* allowed object is* {@link String }**/public void setProjectionScreens(String value) {this.projectionScreens = value;}/*** Gets the value of the audioVisualProductAccessories property.** @return* possible object is* {@link String }**/public String getAudioVisualProductAccessories() {return audioVisualProductAccessories;}/*** Sets the value of the audioVisualProductAccessories property.** @param value* allowed object is* {@link String }**/public void setAudioVisualProductAccessories(String value) {this.audioVisualProductAccessories = value;}}