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>* <complexType>* <complexContent>* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">* <sequence>* <element ref="{}VariationData" minOccurs="0"/>* <element ref="{}AdditionalFeatures" minOccurs="0"/>* <element ref="{}AudioOutputMode" minOccurs="0"/>* <element ref="{}CardReaderInterface" minOccurs="0"/>* <element ref="{}CommunicationInterface" minOccurs="0"/>* <element ref="{}CompatibleMemoryCard" maxOccurs="8" minOccurs="0"/>* <element ref="{}DigitalAudioCapacity" minOccurs="0"/>* <element ref="{}ModelNumber" minOccurs="0"/>* <element ref="{}MovementDetectionTechnology" minOccurs="0"/>* <element ref="{}ReadSpeed" minOccurs="0"/>* <element ref="{}RecordingCapacity" minOccurs="0"/>* <element ref="{}SpeedClassRating" minOccurs="0"/>* <element ref="{}Voltage" minOccurs="0"/>* <element ref="{}Wattage" minOccurs="0"/>* <element ref="{}WirelessStandard" minOccurs="0"/>* <element ref="{}WriteSpeed" minOccurs="0"/>* </sequence>* </restriction>* </complexContent>* </complexType>* </pre>***/@XmlAccessorType(XmlAccessType.FIELD)@XmlType(name = "", propOrder = {"variationData","additionalFeatures","audioOutputMode","cardReaderInterface","communicationInterface","compatibleMemoryCard","digitalAudioCapacity","modelNumber","movementDetectionTechnology","readSpeed","recordingCapacity","speedClassRating","voltage","wattage","wirelessStandard","writeSpeed"})@XmlRootElement(name = "MemoryReader")public class MemoryReader {@XmlElement(name = "VariationData")protected VariationData variationData;@XmlElement(name = "AdditionalFeatures")@XmlJavaTypeAdapter(NormalizedStringAdapter.class)protected String additionalFeatures;@XmlElement(name = "AudioOutputMode")@XmlJavaTypeAdapter(NormalizedStringAdapter.class)protected String audioOutputMode;@XmlElement(name = "CardReaderInterface")protected CardReaderInterfaceTypeValues cardReaderInterface;@XmlElement(name = "CommunicationInterface")@XmlJavaTypeAdapter(NormalizedStringAdapter.class)protected String communicationInterface;@XmlElement(name = "CompatibleMemoryCard")protected List<CompatibleMemoryCardTypeValues> compatibleMemoryCard;@XmlElement(name = "DigitalAudioCapacity")@XmlJavaTypeAdapter(NormalizedStringAdapter.class)protected String digitalAudioCapacity;@XmlElement(name = "ModelNumber")@XmlJavaTypeAdapter(NormalizedStringAdapter.class)protected String modelNumber;@XmlElement(name = "MovementDetectionTechnology")protected Boolean movementDetectionTechnology;@XmlElement(name = "ReadSpeed")protected DataTransferSpeedIntegerDimension readSpeed;@XmlElement(name = "RecordingCapacity")protected TimeIntegerDimension recordingCapacity;@XmlElement(name = "SpeedClassRating")protected SpeedClassRatingTypeValues speedClassRating;@XmlElement(name = "Voltage")protected BigDecimal voltage;@XmlElement(name = "Wattage")protected BigInteger wattage;@XmlElement(name = "WirelessStandard")protected String wirelessStandard;@XmlElement(name = "WriteSpeed")protected DataTransferSpeedTenIntegerDimension writeSpeed;/*** 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 audioOutputMode property.** @return* possible object is* {@link String }**/public String getAudioOutputMode() {return audioOutputMode;}/*** Sets the value of the audioOutputMode property.** @param value* allowed object is* {@link String }**/public void setAudioOutputMode(String value) {this.audioOutputMode = value;}/*** Gets the value of the cardReaderInterface property.** @return* possible object is* {@link CardReaderInterfaceTypeValues }**/public CardReaderInterfaceTypeValues getCardReaderInterface() {return cardReaderInterface;}/*** Sets the value of the cardReaderInterface property.** @param value* allowed object is* {@link CardReaderInterfaceTypeValues }**/public void setCardReaderInterface(CardReaderInterfaceTypeValues value) {this.cardReaderInterface = value;}/*** Gets the value of the communicationInterface property.** @return* possible object is* {@link String }**/public String getCommunicationInterface() {return communicationInterface;}/*** Sets the value of the communicationInterface property.** @param value* allowed object is* {@link String }**/public void setCommunicationInterface(String value) {this.communicationInterface = value;}/*** Gets the value of the compatibleMemoryCard 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 compatibleMemoryCard property.** <p>* For example, to add a new item, do as follows:* <pre>* getCompatibleMemoryCard().add(newItem);* </pre>*** <p>* Objects of the following type(s) are allowed in the list* {@link CompatibleMemoryCardTypeValues }***/public List<CompatibleMemoryCardTypeValues> getCompatibleMemoryCard() {if (compatibleMemoryCard == null) {compatibleMemoryCard = new ArrayList<CompatibleMemoryCardTypeValues>();}return this.compatibleMemoryCard;}/*** Gets the value of the digitalAudioCapacity property.** @return* possible object is* {@link String }**/public String getDigitalAudioCapacity() {return digitalAudioCapacity;}/*** Sets the value of the digitalAudioCapacity property.** @param value* allowed object is* {@link String }**/public void setDigitalAudioCapacity(String value) {this.digitalAudioCapacity = 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 movementDetectionTechnology property.** @return* possible object is* {@link Boolean }**/public Boolean isMovementDetectionTechnology() {return movementDetectionTechnology;}/*** Sets the value of the movementDetectionTechnology property.** @param value* allowed object is* {@link Boolean }**/public void setMovementDetectionTechnology(Boolean value) {this.movementDetectionTechnology = value;}/*** Gets the value of the readSpeed property.** @return* possible object is* {@link DataTransferSpeedIntegerDimension }**/public DataTransferSpeedIntegerDimension getReadSpeed() {return readSpeed;}/*** Sets the value of the readSpeed property.** @param value* allowed object is* {@link DataTransferSpeedIntegerDimension }**/public void setReadSpeed(DataTransferSpeedIntegerDimension value) {this.readSpeed = value;}/*** Gets the value of the recordingCapacity property.** @return* possible object is* {@link TimeIntegerDimension }**/public TimeIntegerDimension getRecordingCapacity() {return recordingCapacity;}/*** Sets the value of the recordingCapacity property.** @param value* allowed object is* {@link TimeIntegerDimension }**/public void setRecordingCapacity(TimeIntegerDimension value) {this.recordingCapacity = value;}/*** Gets the value of the speedClassRating property.** @return* possible object is* {@link SpeedClassRatingTypeValues }**/public SpeedClassRatingTypeValues getSpeedClassRating() {return speedClassRating;}/*** Sets the value of the speedClassRating property.** @param value* allowed object is* {@link SpeedClassRatingTypeValues }**/public void setSpeedClassRating(SpeedClassRatingTypeValues value) {this.speedClassRating = 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;}/*** Gets the value of the wirelessStandard property.** @return* possible object is* {@link String }**/public String getWirelessStandard() {return wirelessStandard;}/*** Sets the value of the wirelessStandard property.** @param value* allowed object is* {@link String }**/public void setWirelessStandard(String value) {this.wirelessStandard = value;}/*** Gets the value of the writeSpeed property.** @return* possible object is* {@link DataTransferSpeedTenIntegerDimension }**/public DataTransferSpeedTenIntegerDimension getWriteSpeed() {return writeSpeed;}/*** Sets the value of the writeSpeed property.** @param value* allowed object is* {@link DataTransferSpeedTenIntegerDimension }**/public void setWriteSpeed(DataTransferSpeedTenIntegerDimension value) {this.writeSpeed = value;}}