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="FlashType" minOccurs="0">* <simpleType>* <restriction base="{http://www.w3.org/2001/XMLSchema}string">* <enumeration value="handle-mount"/>* <enumeration value="macro"/>* <enumeration value="ring-light"/>* <enumeration value="shoe-mount"/>* <enumeration value="other"/>* </restriction>* </simpleType>* </element>* <element name="SlaveFlashes" minOccurs="0">* <simpleType>* <restriction base="{http://www.w3.org/2001/XMLSchema}string">* <enumeration value="slave-flashed-general"/>* <enumeration value="slave-transmitters-and-receivers"/>* <enumeration value="optical-slaves"/>* <enumeration value="slave-accessories"/>* </restriction>* </simpleType>* </element>* <element name="Dedication" minOccurs="0">* <simpleType>* <restriction base="{http://www.w3.org/2001/XMLSchema}string">* <enumeration value="dedicated"/>* <enumeration value="non-dedicated"/>* </restriction>* </simpleType>* </element>* </sequence>* </restriction>* </complexContent>* </complexType>* </pre>***/@XmlAccessorType(XmlAccessType.FIELD)@XmlType(name = "", propOrder = {"flashType","slaveFlashes","dedication"})@XmlRootElement(name = "Flash")public class Flash {@XmlElement(name = "FlashType")protected String flashType;@XmlElement(name = "SlaveFlashes")protected String slaveFlashes;@XmlElement(name = "Dedication")protected String dedication;/*** Gets the value of the flashType property.** @return* possible object is* {@link String }**/public String getFlashType() {return flashType;}/*** Sets the value of the flashType property.** @param value* allowed object is* {@link String }**/public void setFlashType(String value) {this.flashType = value;}/*** Gets the value of the slaveFlashes property.** @return* possible object is* {@link String }**/public String getSlaveFlashes() {return slaveFlashes;}/*** Sets the value of the slaveFlashes property.** @param value* allowed object is* {@link String }**/public void setSlaveFlashes(String value) {this.slaveFlashes = value;}/*** Gets the value of the dedication property.** @return* possible object is* {@link String }**/public String getDedication() {return dedication;}/*** Sets the value of the dedication property.** @param value* allowed object is* {@link String }**/public void setDedication(String value) {this.dedication = value;}}