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 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;/*** <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="ForUseWith" minOccurs="0">* <simpleType>* <restriction base="{http://www.w3.org/2001/XMLSchema}string">* <enumeration value="still-cameras"/>* <enumeration value="camcorders"/>* <enumeration value="still-camera-and-camcorders"/>* <enumeration value="telescopes"/>* </restriction>* </simpleType>* </element>* <element name="StandType" minOccurs="0">* <simpleType>* <restriction base="{http://www.w3.org/2001/XMLSchema}string">* <enumeration value="camera-stands"/>* <enumeration value="monopods"/>* <enumeration value="tripods"/>* <enumeration value="car-window-mounts"/>* </restriction>* </simpleType>* </element>* <element name="SpecificUses" minOccurs="0">* <simpleType>* <restriction base="{http://www.w3.org/2001/XMLSchema}string">* <enumeration value="tabletop"/>* <enumeration value="travel"/>* <enumeration value="hiking-and-outdoors"/>* <enumeration value="hunting-and-shooting"/>* <enumeration value="sports"/>* </restriction>* </simpleType>* </element>* <element name="Material" minOccurs="0">* <simpleType>* <restriction base="{http://www.w3.org/2001/XMLSchema}string">* <enumeration value="aluminum"/>* <enumeration value="carbon-fiber"/>* </restriction>* </simpleType>* </element>* <element name="HeadType" minOccurs="0">* <simpleType>* <restriction base="{http://www.w3.org/2001/XMLSchema}string">* <enumeration value="geared-heads"/>* <enumeration value="ball-heads"/>* <enumeration value="camera-rotator-heads"/>* <enumeration value="pan-and-tilt-heads"/>* <enumeration value="video-heads"/>* <enumeration value="3-way-heads"/>* <enumeration value="panoramic-heads"/>* </restriction>* </simpleType>* </element>* <element name="PackageType" minOccurs="0">* <simpleType>* <restriction base="{http://www.w3.org/2001/XMLSchema}string">* <enumeration value="head-only"/>* <enumeration value="legs-only"/>* <enumeration value="head-and-leg-units"/>* </restriction>* </simpleType>* </element>* </sequence>* </restriction>* </complexContent>* </complexType>* </pre>***/@XmlAccessorType(XmlAccessType.FIELD)@XmlType(name = "", propOrder = {"forUseWith","standType","specificUses","material","headType","packageType"})@XmlRootElement(name = "TripodStand")public class TripodStand {@XmlElement(name = "ForUseWith")protected String forUseWith;@XmlElement(name = "StandType")protected String standType;@XmlElement(name = "SpecificUses")protected String specificUses;@XmlElement(name = "Material")protected String material;@XmlElement(name = "HeadType")protected String headType;@XmlElement(name = "PackageType")protected String packageType;/*** Gets the value of the forUseWith property.** @return* possible object is* {@link String }**/public String getForUseWith() {return forUseWith;}/*** Sets the value of the forUseWith property.** @param value* allowed object is* {@link String }**/public void setForUseWith(String value) {this.forUseWith = value;}/*** Gets the value of the standType property.** @return* possible object is* {@link String }**/public String getStandType() {return standType;}/*** Sets the value of the standType property.** @param value* allowed object is* {@link String }**/public void setStandType(String value) {this.standType = value;}/*** Gets the value of the specificUses property.** @return* possible object is* {@link String }**/public String getSpecificUses() {return specificUses;}/*** Sets the value of the specificUses property.** @param value* allowed object is* {@link String }**/public void setSpecificUses(String value) {this.specificUses = value;}/*** Gets the value of the material property.** @return* possible object is* {@link String }**/public String getMaterial() {return material;}/*** Sets the value of the material property.** @param value* allowed object is* {@link String }**/public void setMaterial(String value) {this.material = value;}/*** Gets the value of the headType property.** @return* possible object is* {@link String }**/public String getHeadType() {return headType;}/*** Sets the value of the headType property.** @param value* allowed object is* {@link String }**/public void setHeadType(String value) {this.headType = value;}/*** Gets the value of the packageType property.** @return* possible object is* {@link String }**/public String getPackageType() {return packageType;}/*** Sets the value of the packageType property.** @param value* allowed object is* {@link String }**/public void setPackageType(String value) {this.packageType = value;}}