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 java.util.ArrayList;
import java.util.List;
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="{}CableLength" minOccurs="0"/>
 *         &lt;element ref="{}ConnectionInterface" maxOccurs="3" minOccurs="0"/>
 *         &lt;element ref="{}ConnectorNumber" minOccurs="0"/>
 *         &lt;element ref="{}ModelNumber" minOccurs="0"/>
 *         &lt;element ref="{}NumberOfUSBHubConnectorPorts" minOccurs="0"/>
 *         &lt;element ref="{}PressureLevels" minOccurs="0"/>
 *         &lt;element ref="{}TabletMaximumDataRate" minOccurs="0"/>
 *         &lt;element ref="{}TabletMinimumSystemRequirements" minOccurs="0"/>
 *         &lt;element ref="{}TabletResolution" minOccurs="0"/>
 *         &lt;element ref="{}TabletSurfaceActiveArea" minOccurs="0"/>
 *         &lt;element ref="{}TVTunerMemory" minOccurs="0"/>
 *         &lt;element ref="{}TVTunerVideoOutputInterface" maxOccurs="5" minOccurs="0"/>
 *         &lt;element ref="{}TVTunerVideoStandard" 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",
    "cableLength",
    "connectionInterface",
    "connectorNumber",
    "modelNumber",
    "numberOfUSBHubConnectorPorts",
    "pressureLevels",
    "tabletMaximumDataRate",
    "tabletMinimumSystemRequirements",
    "tabletResolution",
    "tabletSurfaceActiveArea",
    "tvTunerMemory",
    "tvTunerVideoOutputInterface",
    "tvTunerVideoStandard",
    "voltage",
    "wattage"
})
@XmlRootElement(name = "Computer")
public class Computer {

    @XmlElement(name = "VariationData")
    protected VariationData variationData;
    @XmlElement(name = "CableLength")
    protected LengthSevenDigitDimension cableLength;
    @XmlElement(name = "ConnectionInterface")
    protected List<ConnectionTypeValues> connectionInterface;
    @XmlElement(name = "ConnectorNumber")
    protected BigInteger connectorNumber;
    @XmlElement(name = "ModelNumber")
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
    protected String modelNumber;
    @XmlElement(name = "NumberOfUSBHubConnectorPorts")
    protected BigInteger numberOfUSBHubConnectorPorts;
    @XmlElement(name = "PressureLevels")
    protected PressureLevelSixDigitIntegerDimension pressureLevels;
    @XmlElement(name = "TabletMaximumDataRate")
    protected TabletDataRateDimension tabletMaximumDataRate;
    @XmlElement(name = "TabletMinimumSystemRequirements")
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
    protected String tabletMinimumSystemRequirements;
    @XmlElement(name = "TabletResolution")
    protected TabletResolutionDimension tabletResolution;
    @XmlElement(name = "TabletSurfaceActiveArea")
    protected TabletActiveSurfaceAreaDimension tabletSurfaceActiveArea;
    @XmlElement(name = "TVTunerMemory")
    protected MemorySizeTenDigitIntegerDimension tvTunerMemory;
    @XmlElement(name = "TVTunerVideoOutputInterface")
    protected List<String> tvTunerVideoOutputInterface;
    @XmlElement(name = "TVTunerVideoStandard")
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
    protected String tvTunerVideoStandard;
    @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 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 connectionInterface property.
     * 
     * <p>
     * This accessor method returns a reference to the live list,
     * not a snapshot. Therefore any modification you make to the
     * returned list will be present inside the JAXB object.
     * This is why there is not a <CODE>set</CODE> method for the connectionInterface property.
     * 
     * <p>
     * For example, to add a new item, do as follows:
     * <pre>
     *    getConnectionInterface().add(newItem);
     * </pre>
     * 
     * 
     * <p>
     * Objects of the following type(s) are allowed in the list
     * {@link ConnectionTypeValues }
     * 
     * 
     */
    public List<ConnectionTypeValues> getConnectionInterface() {
        if (connectionInterface == null) {
            connectionInterface = new ArrayList<ConnectionTypeValues>();
        }
        return this.connectionInterface;
    }

    /**
     * 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 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 numberOfUSBHubConnectorPorts property.
     * 
     * @return
     *     possible object is
     *     {@link BigInteger }
     *     
     */
    public BigInteger getNumberOfUSBHubConnectorPorts() {
        return numberOfUSBHubConnectorPorts;
    }

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

    /**
     * Gets the value of the pressureLevels property.
     * 
     * @return
     *     possible object is
     *     {@link PressureLevelSixDigitIntegerDimension }
     *     
     */
    public PressureLevelSixDigitIntegerDimension getPressureLevels() {
        return pressureLevels;
    }

    /**
     * Sets the value of the pressureLevels property.
     * 
     * @param value
     *     allowed object is
     *     {@link PressureLevelSixDigitIntegerDimension }
     *     
     */
    public void setPressureLevels(PressureLevelSixDigitIntegerDimension value) {
        this.pressureLevels = value;
    }

    /**
     * Gets the value of the tabletMaximumDataRate property.
     * 
     * @return
     *     possible object is
     *     {@link TabletDataRateDimension }
     *     
     */
    public TabletDataRateDimension getTabletMaximumDataRate() {
        return tabletMaximumDataRate;
    }

    /**
     * Sets the value of the tabletMaximumDataRate property.
     * 
     * @param value
     *     allowed object is
     *     {@link TabletDataRateDimension }
     *     
     */
    public void setTabletMaximumDataRate(TabletDataRateDimension value) {
        this.tabletMaximumDataRate = value;
    }

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

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

    /**
     * Gets the value of the tabletResolution property.
     * 
     * @return
     *     possible object is
     *     {@link TabletResolutionDimension }
     *     
     */
    public TabletResolutionDimension getTabletResolution() {
        return tabletResolution;
    }

    /**
     * Sets the value of the tabletResolution property.
     * 
     * @param value
     *     allowed object is
     *     {@link TabletResolutionDimension }
     *     
     */
    public void setTabletResolution(TabletResolutionDimension value) {
        this.tabletResolution = value;
    }

    /**
     * Gets the value of the tabletSurfaceActiveArea property.
     * 
     * @return
     *     possible object is
     *     {@link TabletActiveSurfaceAreaDimension }
     *     
     */
    public TabletActiveSurfaceAreaDimension getTabletSurfaceActiveArea() {
        return tabletSurfaceActiveArea;
    }

    /**
     * Sets the value of the tabletSurfaceActiveArea property.
     * 
     * @param value
     *     allowed object is
     *     {@link TabletActiveSurfaceAreaDimension }
     *     
     */
    public void setTabletSurfaceActiveArea(TabletActiveSurfaceAreaDimension value) {
        this.tabletSurfaceActiveArea = value;
    }

    /**
     * Gets the value of the tvTunerMemory property.
     * 
     * @return
     *     possible object is
     *     {@link MemorySizeTenDigitIntegerDimension }
     *     
     */
    public MemorySizeTenDigitIntegerDimension getTVTunerMemory() {
        return tvTunerMemory;
    }

    /**
     * Sets the value of the tvTunerMemory property.
     * 
     * @param value
     *     allowed object is
     *     {@link MemorySizeTenDigitIntegerDimension }
     *     
     */
    public void setTVTunerMemory(MemorySizeTenDigitIntegerDimension value) {
        this.tvTunerMemory = value;
    }

    /**
     * Gets the value of the tvTunerVideoOutputInterface property.
     * 
     * <p>
     * This accessor method returns a reference to the live list,
     * not a snapshot. Therefore any modification you make to the
     * returned list will be present inside the JAXB object.
     * This is why there is not a <CODE>set</CODE> method for the tvTunerVideoOutputInterface property.
     * 
     * <p>
     * For example, to add a new item, do as follows:
     * <pre>
     *    getTVTunerVideoOutputInterface().add(newItem);
     * </pre>
     * 
     * 
     * <p>
     * Objects of the following type(s) are allowed in the list
     * {@link String }
     * 
     * 
     */
    public List<String> getTVTunerVideoOutputInterface() {
        if (tvTunerVideoOutputInterface == null) {
            tvTunerVideoOutputInterface = new ArrayList<String>();
        }
        return this.tvTunerVideoOutputInterface;
    }

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

    /**
     * Sets the value of the tvTunerVideoStandard property.
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setTVTunerVideoStandard(String value) {
        this.tvTunerVideoStandard = 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;
    }

}