blob: 4a4c18395e4e0bc388af439b7e72af846c63ca67 [file] [log] [blame]
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.5-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.02.27 at 02:35:53 PM CST
//
package org.eclipse.ptp.rm.jaxb.core.data;
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.XmlAttribute;
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>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element ref="{}range" minOccurs="0"/>
* &lt;choice>
* &lt;element ref="{}token"/>
* &lt;sequence>
* &lt;element ref="{}put" maxOccurs="unbounded" minOccurs="0"/>
* &lt;element ref="{}set" maxOccurs="unbounded" minOccurs="0"/>
* &lt;element ref="{}add" maxOccurs="unbounded" minOccurs="0"/>
* &lt;/sequence>
* &lt;/choice>
* &lt;/sequence>
* &lt;attribute name="delim" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = { "range", "token", "put", "set", "add" })
@XmlRootElement(name = "token")
public class Token {
protected String range;
protected Token token;
protected List<Put> put;
protected List<Set> set;
protected List<Add> add;
@XmlAttribute
protected String delim;
/**
* Gets the value of the add 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 add property.
*
* <p>
* For example, to add a new item, do as follows:
*
* <pre>
* getAdd().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list {@link Add }
*
*
*/
public List<Add> getAdd() {
if (add == null) {
add = new ArrayList<Add>();
}
return this.add;
}
/**
* Gets the value of the delim property.
*
* @return possible object is {@link String }
*
*/
public String getDelim() {
return delim;
}
/**
* Gets the value of the put 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 put property.
*
* <p>
* For example, to add a new item, do as follows:
*
* <pre>
* getPut().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list {@link Put }
*
*
*/
public List<Put> getPut() {
if (put == null) {
put = new ArrayList<Put>();
}
return this.put;
}
/**
* Gets the value of the range property.
*
* @return possible object is {@link String }
*
*/
public String getRange() {
return range;
}
/**
* Gets the value of the set 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 set property.
*
* <p>
* For example, to add a new item, do as follows:
*
* <pre>
* getSet().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list {@link Set }
*
*
*/
public List<Set> getSet() {
if (set == null) {
set = new ArrayList<Set>();
}
return this.set;
}
/**
* Gets the value of the token property.
*
* @return possible object is {@link Token }
*
*/
public Token getToken() {
return token;
}
/**
* Sets the value of the delim property.
*
* @param value
* allowed object is {@link String }
*
*/
public void setDelim(String value) {
this.delim = value;
}
/**
* Sets the value of the range property.
*
* @param value
* allowed object is {@link String }
*
*/
public void setRange(String value) {
this.range = value;
}
/**
* Sets the value of the token property.
*
* @param value
* allowed object is {@link Token }
*
*/
public void setToken(Token value) {
this.token = value;
}
}