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.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 name="CableLength" type="{}LengthDimension" minOccurs="0"/>* <element ref="{}ConnectorGender" maxOccurs="5" minOccurs="0"/>* <element ref="{}ConnectorTypeUsedOnCable" minOccurs="0"/>* <element ref="{}MaximumSupportedScreenSize" minOccurs="0"/>* <element ref="{}MinimumSupportedScreenSize" minOccurs="0"/>* <element ref="{}MountingPattern" minOccurs="0"/>* <element ref="{}MountingType" minOccurs="0"/>* <element ref="{}MountMotion" minOccurs="0"/>* <element ref="{}MountBoltPattern" minOccurs="0"/>* <element name="PowerSource" type="{}FortyStringNotNull" minOccurs="0"/>* <element name="WirelessTechnology" type="{}StringNotNull" maxOccurs="5" minOccurs="0"/>* </sequence>* </restriction>* </complexContent>* </complexType>* </pre>***/@XmlAccessorType(XmlAccessType.FIELD)@XmlType(name = "", propOrder = {"cableLength","connectorGender","connectorTypeUsedOnCable","maximumSupportedScreenSize","minimumSupportedScreenSize","mountingPattern","mountingType","mountMotion","mountBoltPattern","powerSource","wirelessTechnology"})@XmlRootElement(name = "AudioVideoAccessory")public class AudioVideoAccessory {@XmlElement(name = "CableLength")protected LengthDimension cableLength;@XmlElement(name = "ConnectorGender")@XmlJavaTypeAdapter(NormalizedStringAdapter.class)protected List<String> connectorGender;@XmlElement(name = "ConnectorTypeUsedOnCable")@XmlJavaTypeAdapter(NormalizedStringAdapter.class)protected String connectorTypeUsedOnCable;@XmlElement(name = "MaximumSupportedScreenSize")protected LengthDimension maximumSupportedScreenSize;@XmlElement(name = "MinimumSupportedScreenSize")protected LengthDimension minimumSupportedScreenSize;@XmlElement(name = "MountingPattern")@XmlJavaTypeAdapter(NormalizedStringAdapter.class)protected String mountingPattern;@XmlElement(name = "MountingType")@XmlJavaTypeAdapter(NormalizedStringAdapter.class)protected String mountingType;@XmlElement(name = "MountMotion")@XmlJavaTypeAdapter(NormalizedStringAdapter.class)protected String mountMotion;@XmlElement(name = "MountBoltPattern")@XmlJavaTypeAdapter(NormalizedStringAdapter.class)protected String mountBoltPattern;@XmlElement(name = "PowerSource")@XmlJavaTypeAdapter(NormalizedStringAdapter.class)protected String powerSource;@XmlElement(name = "WirelessTechnology")@XmlJavaTypeAdapter(NormalizedStringAdapter.class)protected List<String> wirelessTechnology;/*** Gets the value of the cableLength property.** @return* possible object is* {@link LengthDimension }**/public LengthDimension getCableLength() {return cableLength;}/*** Sets the value of the cableLength property.** @param value* allowed object is* {@link LengthDimension }**/public void setCableLength(LengthDimension value) {this.cableLength = value;}/*** Gets the value of the connectorGender 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 connectorGender property.** <p>* For example, to add a new item, do as follows:* <pre>* getConnectorGender().add(newItem);* </pre>*** <p>* Objects of the following type(s) are allowed in the list* {@link String }***/public List<String> getConnectorGender() {if (connectorGender == null) {connectorGender = new ArrayList<String>();}return this.connectorGender;}/*** Gets the value of the connectorTypeUsedOnCable property.** @return* possible object is* {@link String }**/public String getConnectorTypeUsedOnCable() {return connectorTypeUsedOnCable;}/*** Sets the value of the connectorTypeUsedOnCable property.** @param value* allowed object is* {@link String }**/public void setConnectorTypeUsedOnCable(String value) {this.connectorTypeUsedOnCable = value;}/*** Gets the value of the maximumSupportedScreenSize property.** @return* possible object is* {@link LengthDimension }**/public LengthDimension getMaximumSupportedScreenSize() {return maximumSupportedScreenSize;}/*** Sets the value of the maximumSupportedScreenSize property.** @param value* allowed object is* {@link LengthDimension }**/public void setMaximumSupportedScreenSize(LengthDimension value) {this.maximumSupportedScreenSize = value;}/*** Gets the value of the minimumSupportedScreenSize property.** @return* possible object is* {@link LengthDimension }**/public LengthDimension getMinimumSupportedScreenSize() {return minimumSupportedScreenSize;}/*** Sets the value of the minimumSupportedScreenSize property.** @param value* allowed object is* {@link LengthDimension }**/public void setMinimumSupportedScreenSize(LengthDimension value) {this.minimumSupportedScreenSize = value;}/*** Gets the value of the mountingPattern property.** @return* possible object is* {@link String }**/public String getMountingPattern() {return mountingPattern;}/*** Sets the value of the mountingPattern property.** @param value* allowed object is* {@link String }**/public void setMountingPattern(String value) {this.mountingPattern = value;}/*** Gets the value of the mountingType property.** @return* possible object is* {@link String }**/public String getMountingType() {return mountingType;}/*** Sets the value of the mountingType property.** @param value* allowed object is* {@link String }**/public void setMountingType(String value) {this.mountingType = value;}/*** Gets the value of the mountMotion property.** @return* possible object is* {@link String }**/public String getMountMotion() {return mountMotion;}/*** Sets the value of the mountMotion property.** @param value* allowed object is* {@link String }**/public void setMountMotion(String value) {this.mountMotion = value;}/*** Gets the value of the mountBoltPattern property.** @return* possible object is* {@link String }**/public String getMountBoltPattern() {return mountBoltPattern;}/*** Sets the value of the mountBoltPattern property.** @param value* allowed object is* {@link String }**/public void setMountBoltPattern(String value) {this.mountBoltPattern = value;}/*** Gets the value of the powerSource property.** @return* possible object is* {@link String }**/public String getPowerSource() {return powerSource;}/*** Sets the value of the powerSource property.** @param value* allowed object is* {@link String }**/public void setPowerSource(String value) {this.powerSource = value;}/*** Gets the value of the wirelessTechnology 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 wirelessTechnology property.** <p>* For example, to add a new item, do as follows:* <pre>* getWirelessTechnology().add(newItem);* </pre>*** <p>* Objects of the following type(s) are allowed in the list* {@link String }***/public List<String> getWirelessTechnology() {if (wirelessTechnology == null) {wirelessTechnology = new ArrayList<String>();}return this.wirelessTechnology;}}