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="film-cameras"/>* <enumeration value="digital-cameras"/>* <enumeration value="camcorders"/>* <enumeration value="telescopes"/>* <enumeration value="microscopes"/>* </restriction>* </simpleType>* </element>* <element name="AccessoryType" minOccurs="0">* <simpleType>* <restriction base="{http://www.w3.org/2001/XMLSchema}string">* <enumeration value="c-mounts"/>* <enumeration value="lens-scope-converters"/>* <enumeration value="lens-to-camera-adapters"/>* <enumeration value="remote-lens-controllers"/>* <enumeration value="extenders"/>* <enumeration value="series-vii-adapters"/>* <enumeration value="t-mounts"/>* <enumeration value="tripod-adapters"/>* <enumeration value="lens-boards"/>* <enumeration value="bayonets"/>* <enumeration value="lens-hoods"/>* <enumeration value="lens-supports"/>* <enumeration value="rapid-focusing-levers"/>* <enumeration value="shutters"/>* <enumeration value="diopters"/>* <enumeration value="mirror-scopes"/>* <enumeration value="lens-caps-general"/>* <enumeration value="lens-caps-up-to-48mm"/>* <enumeration value="lens-caps-49mm"/>* <enumeration value="lens-caps-52mm"/>* <enumeration value="lens-caps-55mm"/>* <enumeration value="lens-caps-58mm"/>* <enumeration value="lens-caps-62mm"/>* <enumeration value="lens-caps-67mm"/>* <enumeration value="lens-caps-72mm"/>* <enumeration value="lens-caps-77mm"/>* <enumeration value="lens-caps-82mm"/>* <enumeration value="lens-caps-86mm"/>* <enumeration value="lens-caps-95mm"/>* <enumeration value="lens-caps-other-sizes"/>* </restriction>* </simpleType>* </element>* </sequence>* </restriction>* </complexContent>* </complexType>* </pre>***/@XmlAccessorType(XmlAccessType.FIELD)@XmlType(name = "", propOrder = {"forUseWith","accessoryType"})@XmlRootElement(name = "LensAccessory")public class LensAccessory {@XmlElement(name = "ForUseWith")protected String forUseWith;@XmlElement(name = "AccessoryType")protected String accessoryType;/*** 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 accessoryType property.** @return* possible object is* {@link String }**/public String getAccessoryType() {return accessoryType;}/*** Sets the value of the accessoryType property.** @param value* allowed object is* {@link String }**/public void setAccessoryType(String value) {this.accessoryType = value;}}