Subversion Repositories SmartDukaan

Rev

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>
 * &lt;complexType>
 *   &lt;complexContent>
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       &lt;sequence>
 *         &lt;element name="ProjectionType" minOccurs="0">
 *           &lt;simpleType>
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *               &lt;enumeration value="slide-projectors"/>
 *               &lt;enumeration value="video-projectors"/>
 *               &lt;enumeration value="large-format-projectors"/>
 *               &lt;enumeration value="medium-format-projectors"/>
 *               &lt;enumeration value="multimedia-projectors"/>
 *               &lt;enumeration value="opaque-projectors"/>
 *               &lt;enumeration value="lightboxes"/>
 *               &lt;enumeration value="viewers"/>
 *               &lt;enumeration value="loupes"/>
 *             &lt;/restriction>
 *           &lt;/simpleType>
 *         &lt;/element>
 *         &lt;element name="LoupeMagnification" minOccurs="0">
 *           &lt;simpleType>
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *               &lt;enumeration value="up-to-4x"/>
 *               &lt;enumeration value="5x-9x"/>
 *               &lt;enumeration value="10x-15x"/>
 *               &lt;enumeration value="above-15x"/>
 *               &lt;enumeration value="zoom"/>
 *             &lt;/restriction>
 *           &lt;/simpleType>
 *         &lt;/element>
 *         &lt;element name="ProjectorLenses" minOccurs="0">
 *           &lt;simpleType>
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *               &lt;enumeration value="35mm"/>
 *               &lt;enumeration value="large-format"/>
 *               &lt;enumeration value="medium-format"/>
 *               &lt;enumeration value="normal"/>
 *               &lt;enumeration value="telephoto"/>
 *               &lt;enumeration value="wide-angle"/>
 *               &lt;enumeration value="zoom"/>
 *               &lt;enumeration value="other-projector-lenses"/>
 *             &lt;/restriction>
 *           &lt;/simpleType>
 *         &lt;/element>
 *         &lt;element name="ProjectionScreens" minOccurs="0">
 *           &lt;simpleType>
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *               &lt;enumeration value="fast-fold-screens"/>
 *               &lt;enumeration value="free-standing-floor-screens"/>
 *               &lt;enumeration value="rear-projection-screens"/>
 *               &lt;enumeration value="tabletop-screens"/>
 *               &lt;enumeration value="tripod-mounted-screens"/>
 *               &lt;enumeration value="wall-and-ceiling-electric-screens"/>
 *               &lt;enumeration value="wall-and-ceiling-screens"/>
 *               &lt;enumeration value="other-projection-screens"/>
 *             &lt;/restriction>
 *           &lt;/simpleType>
 *         &lt;/element>
 *         &lt;element name="AudioVisualProductAccessories" minOccurs="0">
 *           &lt;simpleType>
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *               &lt;enumeration value="dissolve-and-control-units"/>
 *               &lt;enumeration value="lamps"/>
 *               &lt;enumeration value="stands"/>
 *               &lt;enumeration value="mounting-equipment"/>
 *               &lt;enumeration value="other-accessories"/>
 *               &lt;enumeration value="projector-trays-general"/>
 *               &lt;enumeration value="35mm-slide-projector-trays"/>
 *               &lt;enumeration value="medium-format-slide-projector-trays"/>
 *             &lt;/restriction>
 *           &lt;/simpleType>
 *         &lt;/element>
 *       &lt;/sequence>
 *     &lt;/restriction>
 *   &lt;/complexContent>
 * &lt;/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;
    }

}