Subversion Repositories SmartDukaan

Rev

Rev 580 | 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.01.04 at 10:49:27 AM IST 
//


package in.shop2020.metamodel.jaxb.comparison;

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 CMPDefinitionType complex type.
 * 
 * <p>The following schema fragment specifies the expected content contained within this class.
 * 
 * <pre>
 * &lt;complexType name="CMPDefinitionType">
 *   &lt;complexContent>
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       &lt;sequence>
 *         &lt;element name="CMPSlideRuleDefinition" type="{http://shop2020.in}CMPSlideRuleDefinitionType" maxOccurs="unbounded" minOccurs="0"/>
 *         &lt;element name="CMPRuleDefinition" type="{http://shop2020.in}CMPRuleDefinitionType" maxOccurs="unbounded" minOccurs="0"/>
 *         &lt;element name="CMPBucketDefinition" type="{http://shop2020.in}CMPBucketDefinitionType" maxOccurs="unbounded" minOccurs="0"/>
 *       &lt;/sequence>
 *     &lt;/restriction>
 *   &lt;/complexContent>
 * &lt;/complexType>
 * </pre>
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CMPDefinitionType", propOrder = {
    "cmpSlideRuleDefinition",
    "cmpRuleDefinition",
    "cmpBucketDefinition"
})
public class CMPDefinitionType {

    @XmlElement(name = "CMPSlideRuleDefinition")
    protected List<CMPSlideRuleDefinitionType> cmpSlideRuleDefinition;
    @XmlElement(name = "CMPRuleDefinition")
    protected List<CMPRuleDefinitionType> cmpRuleDefinition;
    @XmlElement(name = "CMPBucketDefinition")
    protected List<CMPBucketDefinitionType> cmpBucketDefinition;

    /**
     * Gets the value of the cmpSlideRuleDefinition 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 cmpSlideRuleDefinition property.
     * 
     * <p>
     * For example, to add a new item, do as follows:
     * <pre>
     *    getCMPSlideRuleDefinition().add(newItem);
     * </pre>
     * 
     * 
     * <p>
     * Objects of the following type(s) are allowed in the list
     * {@link CMPSlideRuleDefinitionType }
     * 
     * 
     */
    public List<CMPSlideRuleDefinitionType> getCMPSlideRuleDefinition() {
        if (cmpSlideRuleDefinition == null) {
            cmpSlideRuleDefinition = new ArrayList<CMPSlideRuleDefinitionType>();
        }
        return this.cmpSlideRuleDefinition;
    }

    /**
     * Gets the value of the cmpRuleDefinition 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 cmpRuleDefinition property.
     * 
     * <p>
     * For example, to add a new item, do as follows:
     * <pre>
     *    getCMPRuleDefinition().add(newItem);
     * </pre>
     * 
     * 
     * <p>
     * Objects of the following type(s) are allowed in the list
     * {@link CMPRuleDefinitionType }
     * 
     * 
     */
    public List<CMPRuleDefinitionType> getCMPRuleDefinition() {
        if (cmpRuleDefinition == null) {
            cmpRuleDefinition = new ArrayList<CMPRuleDefinitionType>();
        }
        return this.cmpRuleDefinition;
    }

    /**
     * Gets the value of the cmpBucketDefinition 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 cmpBucketDefinition property.
     * 
     * <p>
     * For example, to add a new item, do as follows:
     * <pre>
     *    getCMPBucketDefinition().add(newItem);
     * </pre>
     * 
     * 
     * <p>
     * Objects of the following type(s) are allowed in the list
     * {@link CMPBucketDefinitionType }
     * 
     * 
     */
    public List<CMPBucketDefinitionType> getCMPBucketDefinition() {
        if (cmpBucketDefinition == null) {
            cmpBucketDefinition = new ArrayList<CMPBucketDefinitionType>();
        }
        return this.cmpBucketDefinition;
    }

}