Rev 1061 | Blame | Compare with Previous | Last modification | View Log | RSS feed
//// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1-b02-fcs// 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: 2011.04.04 at 04:52:17 PM IST//package in.shop2020.metamodel.jaxb.facets;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.XmlType;/*** <p>Java class for FacetDefinitionType complex type.** <p>The following schema fragment specifies the expected content contained within this class.** <pre>* <complexType name="FacetDefinitionType">* <complexContent>* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">* <sequence>* <element name="ID" type="{http://www.w3.org/2001/XMLSchema}long"/>* <element name="Target" type="{http://www.w3.org/2001/XMLSchema}string"/>* <element name="Description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>* <element name="FacetSlideDefinition" type="{http://shop2020.in}FacetSlideDefinitionType" maxOccurs="unbounded"/>* </sequence>* </restriction>* </complexContent>* </complexType>* </pre>***/@XmlAccessorType(XmlAccessType.FIELD)@XmlType(name = "FacetDefinitionType", propOrder = {"id","target","description","facetSlideDefinition"})public class FacetDefinitionType {@XmlElement(name = "ID")protected long id;@XmlElement(name = "Target", required = true)protected String target;@XmlElement(name = "Description")protected String description;@XmlElement(name = "FacetSlideDefinition", required = true)protected List<FacetSlideDefinitionType> facetSlideDefinition;/*** Gets the value of the id property.**/public long getID() {return id;}/*** Sets the value of the id property.**/public void setID(long value) {this.id = value;}/*** Gets the value of the target property.** @return* possible object is* {@link String }**/public String getTarget() {return target;}/*** Sets the value of the target property.** @param value* allowed object is* {@link String }**/public void setTarget(String value) {this.target = value;}/*** Gets the value of the description property.** @return* possible object is* {@link String }**/public String getDescription() {return description;}/*** Sets the value of the description property.** @param value* allowed object is* {@link String }**/public void setDescription(String value) {this.description = value;}/*** Gets the value of the facetSlideDefinition 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 facetSlideDefinition property.** <p>* For example, to add a new item, do as follows:* <pre>* getFacetSlideDefinition().add(newItem);* </pre>*** <p>* Objects of the following type(s) are allowed in the list* {@link FacetSlideDefinitionType }***/public List<FacetSlideDefinitionType> getFacetSlideDefinition() {if (facetSlideDefinition == null) {facetSlideDefinition = new ArrayList<FacetSlideDefinitionType>();}return this.facetSlideDefinition;}}