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.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="{}AdditionalFeatures" minOccurs="0"/>
 *         &lt;element ref="{}CacheMemory" minOccurs="0"/>
 *         &lt;element ref="{}ModelNumber" minOccurs="0"/>
 *         &lt;element ref="{}ProcessorBrand" minOccurs="0"/>
 *         &lt;element ref="{}ProcessorCoolingDevice" minOccurs="0"/>
 *         &lt;element ref="{}ProcessorCount" minOccurs="0"/>
 *         &lt;element ref="{}ProcessorSeries" minOccurs="0"/>
 *         &lt;element ref="{}ProcessorSocket" minOccurs="0"/>
 *         &lt;element ref="{}ProcessorSpeed" minOccurs="0"/>
 *       &lt;/sequence>
 *     &lt;/restriction>
 *   &lt;/complexContent>
 * &lt;/complexType>
 * </pre>
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
    "variationData",
    "additionalFeatures",
    "cacheMemory",
    "modelNumber",
    "processorBrand",
    "processorCoolingDevice",
    "processorCount",
    "processorSeries",
    "processorSocket",
    "processorSpeed"
})
@XmlRootElement(name = "ComputerProcessor")
public class ComputerProcessor {

    @XmlElement(name = "VariationData")
    protected VariationData variationData;
    @XmlElement(name = "AdditionalFeatures")
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
    protected String additionalFeatures;
    @XmlElement(name = "CacheMemory")
    protected MemorySizeIntegerDimension cacheMemory;
    @XmlElement(name = "ModelNumber")
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
    protected String modelNumber;
    @XmlElement(name = "ProcessorBrand")
    protected String processorBrand;
    @XmlElement(name = "ProcessorCoolingDevice")
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
    protected String processorCoolingDevice;
    @XmlElement(name = "ProcessorCount")
    protected BigInteger processorCount;
    @XmlElement(name = "ProcessorSeries")
    protected ProcessorSeriesTypeValues processorSeries;
    @XmlElement(name = "ProcessorSocket")
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
    protected String processorSocket;
    @XmlElement(name = "ProcessorSpeed")
    protected FrequencyDimension processorSpeed;

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

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

    /**
     * Gets the value of the cacheMemory property.
     * 
     * @return
     *     possible object is
     *     {@link MemorySizeIntegerDimension }
     *     
     */
    public MemorySizeIntegerDimension getCacheMemory() {
        return cacheMemory;
    }

    /**
     * Sets the value of the cacheMemory property.
     * 
     * @param value
     *     allowed object is
     *     {@link MemorySizeIntegerDimension }
     *     
     */
    public void setCacheMemory(MemorySizeIntegerDimension value) {
        this.cacheMemory = 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 processorBrand property.
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getProcessorBrand() {
        return processorBrand;
    }

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

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

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

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

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

    /**
     * Gets the value of the processorSeries property.
     * 
     * @return
     *     possible object is
     *     {@link ProcessorSeriesTypeValues }
     *     
     */
    public ProcessorSeriesTypeValues getProcessorSeries() {
        return processorSeries;
    }

    /**
     * Sets the value of the processorSeries property.
     * 
     * @param value
     *     allowed object is
     *     {@link ProcessorSeriesTypeValues }
     *     
     */
    public void setProcessorSeries(ProcessorSeriesTypeValues value) {
        this.processorSeries = value;
    }

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

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

    /**
     * Gets the value of the processorSpeed property.
     * 
     * @return
     *     possible object is
     *     {@link FrequencyDimension }
     *     
     */
    public FrequencyDimension getProcessorSpeed() {
        return processorSpeed;
    }

    /**
     * Sets the value of the processorSpeed property.
     * 
     * @param value
     *     allowed object is
     *     {@link FrequencyDimension }
     *     
     */
    public void setProcessorSpeed(FrequencyDimension value) {
        this.processorSpeed = value;
    }

}