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 java.math.BigDecimal;
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.XmlType;
import javax.xml.bind.annotation.adapters.NormalizedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;


/**
 * <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 ref="{}VariationData" minOccurs="0"/>
 *         &lt;element ref="{}ACAdapterCurrent" minOccurs="0"/>
 *         &lt;element ref="{}CableLength" minOccurs="0"/>
 *         &lt;element ref="{}CableSpeed" minOccurs="0"/>
 *         &lt;element ref="{}CableType" minOccurs="0"/>
 *         &lt;element ref="{}CompatibleDevices" minOccurs="0"/>
 *         &lt;element ref="{}CompatibleDeviceSize" minOccurs="0"/>
 *         &lt;element ref="{}Conductor" minOccurs="0"/>
 *         &lt;element ref="{}ConnectionType" minOccurs="0"/>
 *         &lt;element ref="{}ConnectorNumber" minOccurs="0"/>
 *         &lt;element ref="{}MaximumHorizontalVideoResolution" minOccurs="0"/>
 *         &lt;element ref="{}MaximumVerticalVideoResolution" minOccurs="0"/>
 *         &lt;element ref="{}ModelNumber" minOccurs="0"/>
 *         &lt;element ref="{}NumberOfFans" minOccurs="0"/>
 *         &lt;element ref="{}NumberOfMonitorConnections" minOccurs="0"/>
 *         &lt;element ref="{}PrivacyScreenMaterialType" minOccurs="0"/>
 *         &lt;element ref="{}PrivacyScreenSize" minOccurs="0"/>
 *         &lt;element ref="{}Voltage" minOccurs="0"/>
 *         &lt;element ref="{}Wattage" minOccurs="0"/>
 *       &lt;/sequence>
 *     &lt;/restriction>
 *   &lt;/complexContent>
 * &lt;/complexType>
 * </pre>
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
    "variationData",
    "acAdapterCurrent",
    "cableLength",
    "cableSpeed",
    "cableType",
    "compatibleDevices",
    "compatibleDeviceSize",
    "conductor",
    "connectionType",
    "connectorNumber",
    "maximumHorizontalVideoResolution",
    "maximumVerticalVideoResolution",
    "modelNumber",
    "numberOfFans",
    "numberOfMonitorConnections",
    "privacyScreenMaterialType",
    "privacyScreenSize",
    "voltage",
    "wattage"
})
@XmlRootElement(name = "ComputerAddOn")
public class ComputerAddOn {

    @XmlElement(name = "VariationData")
    protected VariationData variationData;
    @XmlElement(name = "ACAdapterCurrent")
    protected CurrentFiveDigitDimension acAdapterCurrent;
    @XmlElement(name = "CableLength")
    protected LengthSevenDigitDimension cableLength;
    @XmlElement(name = "CableSpeed")
    protected DataTransferSpeedDimension cableSpeed;
    @XmlElement(name = "CableType")
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
    protected String cableType;
    @XmlElement(name = "CompatibleDevices")
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
    protected String compatibleDevices;
    @XmlElement(name = "CompatibleDeviceSize")
    protected BigDecimal compatibleDeviceSize;
    @XmlElement(name = "Conductor")
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
    protected String conductor;
    @XmlElement(name = "ConnectionType")
    protected ConnectionTypeValues connectionType;
    @XmlElement(name = "ConnectorNumber")
    protected BigInteger connectorNumber;
    @XmlElement(name = "MaximumHorizontalVideoResolution")
    protected BigInteger maximumHorizontalVideoResolution;
    @XmlElement(name = "MaximumVerticalVideoResolution")
    protected BigInteger maximumVerticalVideoResolution;
    @XmlElement(name = "ModelNumber")
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
    protected String modelNumber;
    @XmlElement(name = "NumberOfFans")
    protected BigInteger numberOfFans;
    @XmlElement(name = "NumberOfMonitorConnections")
    protected BigInteger numberOfMonitorConnections;
    @XmlElement(name = "PrivacyScreenMaterialType")
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
    protected String privacyScreenMaterialType;
    @XmlElement(name = "PrivacyScreenSize")
    protected BigInteger privacyScreenSize;
    @XmlElement(name = "Voltage")
    protected BigDecimal voltage;
    @XmlElement(name = "Wattage")
    protected BigInteger wattage;

    /**
     * Gets the value of the variationData property.
     * 
     * @return
     *     possible object is
     *     {@link VariationData }
     *     
     */
    public VariationData getVariationData() {
        return variationData;
    }

    /**
     * Sets the value of the variationData property.
     * 
     * @param value
     *     allowed object is
     *     {@link VariationData }
     *     
     */
    public void setVariationData(VariationData value) {
        this.variationData = value;
    }

    /**
     * Gets the value of the acAdapterCurrent property.
     * 
     * @return
     *     possible object is
     *     {@link CurrentFiveDigitDimension }
     *     
     */
    public CurrentFiveDigitDimension getACAdapterCurrent() {
        return acAdapterCurrent;
    }

    /**
     * Sets the value of the acAdapterCurrent property.
     * 
     * @param value
     *     allowed object is
     *     {@link CurrentFiveDigitDimension }
     *     
     */
    public void setACAdapterCurrent(CurrentFiveDigitDimension value) {
        this.acAdapterCurrent = value;
    }

    /**
     * Gets the value of the cableLength property.
     * 
     * @return
     *     possible object is
     *     {@link LengthSevenDigitDimension }
     *     
     */
    public LengthSevenDigitDimension getCableLength() {
        return cableLength;
    }

    /**
     * Sets the value of the cableLength property.
     * 
     * @param value
     *     allowed object is
     *     {@link LengthSevenDigitDimension }
     *     
     */
    public void setCableLength(LengthSevenDigitDimension value) {
        this.cableLength = value;
    }

    /**
     * Gets the value of the cableSpeed property.
     * 
     * @return
     *     possible object is
     *     {@link DataTransferSpeedDimension }
     *     
     */
    public DataTransferSpeedDimension getCableSpeed() {
        return cableSpeed;
    }

    /**
     * Sets the value of the cableSpeed property.
     * 
     * @param value
     *     allowed object is
     *     {@link DataTransferSpeedDimension }
     *     
     */
    public void setCableSpeed(DataTransferSpeedDimension value) {
        this.cableSpeed = value;
    }

    /**
     * Gets the value of the cableType property.
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getCableType() {
        return cableType;
    }

    /**
     * Sets the value of the cableType property.
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setCableType(String value) {
        this.cableType = value;
    }

    /**
     * Gets the value of the compatibleDevices property.
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getCompatibleDevices() {
        return compatibleDevices;
    }

    /**
     * Sets the value of the compatibleDevices property.
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setCompatibleDevices(String value) {
        this.compatibleDevices = value;
    }

    /**
     * Gets the value of the compatibleDeviceSize property.
     * 
     * @return
     *     possible object is
     *     {@link BigDecimal }
     *     
     */
    public BigDecimal getCompatibleDeviceSize() {
        return compatibleDeviceSize;
    }

    /**
     * Sets the value of the compatibleDeviceSize property.
     * 
     * @param value
     *     allowed object is
     *     {@link BigDecimal }
     *     
     */
    public void setCompatibleDeviceSize(BigDecimal value) {
        this.compatibleDeviceSize = value;
    }

    /**
     * Gets the value of the conductor property.
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getConductor() {
        return conductor;
    }

    /**
     * Sets the value of the conductor property.
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setConductor(String value) {
        this.conductor = value;
    }

    /**
     * Gets the value of the connectionType property.
     * 
     * @return
     *     possible object is
     *     {@link ConnectionTypeValues }
     *     
     */
    public ConnectionTypeValues getConnectionType() {
        return connectionType;
    }

    /**
     * Sets the value of the connectionType property.
     * 
     * @param value
     *     allowed object is
     *     {@link ConnectionTypeValues }
     *     
     */
    public void setConnectionType(ConnectionTypeValues value) {
        this.connectionType = value;
    }

    /**
     * Gets the value of the connectorNumber property.
     * 
     * @return
     *     possible object is
     *     {@link BigInteger }
     *     
     */
    public BigInteger getConnectorNumber() {
        return connectorNumber;
    }

    /**
     * Sets the value of the connectorNumber property.
     * 
     * @param value
     *     allowed object is
     *     {@link BigInteger }
     *     
     */
    public void setConnectorNumber(BigInteger value) {
        this.connectorNumber = value;
    }

    /**
     * Gets the value of the maximumHorizontalVideoResolution property.
     * 
     * @return
     *     possible object is
     *     {@link BigInteger }
     *     
     */
    public BigInteger getMaximumHorizontalVideoResolution() {
        return maximumHorizontalVideoResolution;
    }

    /**
     * Sets the value of the maximumHorizontalVideoResolution property.
     * 
     * @param value
     *     allowed object is
     *     {@link BigInteger }
     *     
     */
    public void setMaximumHorizontalVideoResolution(BigInteger value) {
        this.maximumHorizontalVideoResolution = value;
    }

    /**
     * Gets the value of the maximumVerticalVideoResolution property.
     * 
     * @return
     *     possible object is
     *     {@link BigInteger }
     *     
     */
    public BigInteger getMaximumVerticalVideoResolution() {
        return maximumVerticalVideoResolution;
    }

    /**
     * Sets the value of the maximumVerticalVideoResolution property.
     * 
     * @param value
     *     allowed object is
     *     {@link BigInteger }
     *     
     */
    public void setMaximumVerticalVideoResolution(BigInteger value) {
        this.maximumVerticalVideoResolution = value;
    }

    /**
     * Gets the value of the modelNumber property.
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getModelNumber() {
        return modelNumber;
    }

    /**
     * Sets the value of the modelNumber property.
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setModelNumber(String value) {
        this.modelNumber = value;
    }

    /**
     * Gets the value of the numberOfFans property.
     * 
     * @return
     *     possible object is
     *     {@link BigInteger }
     *     
     */
    public BigInteger getNumberOfFans() {
        return numberOfFans;
    }

    /**
     * Sets the value of the numberOfFans property.
     * 
     * @param value
     *     allowed object is
     *     {@link BigInteger }
     *     
     */
    public void setNumberOfFans(BigInteger value) {
        this.numberOfFans = value;
    }

    /**
     * Gets the value of the numberOfMonitorConnections property.
     * 
     * @return
     *     possible object is
     *     {@link BigInteger }
     *     
     */
    public BigInteger getNumberOfMonitorConnections() {
        return numberOfMonitorConnections;
    }

    /**
     * Sets the value of the numberOfMonitorConnections property.
     * 
     * @param value
     *     allowed object is
     *     {@link BigInteger }
     *     
     */
    public void setNumberOfMonitorConnections(BigInteger value) {
        this.numberOfMonitorConnections = value;
    }

    /**
     * Gets the value of the privacyScreenMaterialType property.
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getPrivacyScreenMaterialType() {
        return privacyScreenMaterialType;
    }

    /**
     * Sets the value of the privacyScreenMaterialType property.
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setPrivacyScreenMaterialType(String value) {
        this.privacyScreenMaterialType = value;
    }

    /**
     * Gets the value of the privacyScreenSize property.
     * 
     * @return
     *     possible object is
     *     {@link BigInteger }
     *     
     */
    public BigInteger getPrivacyScreenSize() {
        return privacyScreenSize;
    }

    /**
     * Sets the value of the privacyScreenSize property.
     * 
     * @param value
     *     allowed object is
     *     {@link BigInteger }
     *     
     */
    public void setPrivacyScreenSize(BigInteger value) {
        this.privacyScreenSize = value;
    }

    /**
     * Gets the value of the voltage property.
     * 
     * @return
     *     possible object is
     *     {@link BigDecimal }
     *     
     */
    public BigDecimal getVoltage() {
        return voltage;
    }

    /**
     * Sets the value of the voltage property.
     * 
     * @param value
     *     allowed object is
     *     {@link BigDecimal }
     *     
     */
    public void setVoltage(BigDecimal value) {
        this.voltage = value;
    }

    /**
     * Gets the value of the wattage property.
     * 
     * @return
     *     possible object is
     *     {@link BigInteger }
     *     
     */
    public BigInteger getWattage() {
        return wattage;
    }

    /**
     * Sets the value of the wattage property.
     * 
     * @param value
     *     allowed object is
     *     {@link BigInteger }
     *     
     */
    public void setWattage(BigInteger value) {
        this.wattage = value;
    }

}