![JAR search and dependency download from the Maven repository](/logo.png)
net.sourceforge.nrl.parser.jaxb15.JaxbOperators Maven / Gradle / Ivy
Show all versions of nrlparser Show documentation
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.2-hudson-jaxb-ri-2.2-63-
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2014.04.23 at 02:02:35 PM BST
//
package net.sourceforge.nrl.parser.jaxb15;
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.XmlType;
/**
* A collection of extension operators
*
* Java class for Operators complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Operators">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="documentation" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="model" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* <element name="operator" type="{urn:net:sourceforge:nrl:1.5}Operator" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* <attribute name="version" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Operators", propOrder = {
"documentation",
"model",
"operator"
})
public class JaxbOperators {
protected String documentation;
protected List model;
protected List operator;
@XmlAttribute(name = "version", required = true)
protected String version;
/**
* Gets the value of the documentation property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDocumentation() {
return documentation;
}
/**
* Sets the value of the documentation property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDocumentation(String value) {
this.documentation = value;
}
/**
* Gets the value of the model property.
*
*
* 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 set
method for the model property.
*
*
* For example, to add a new item, do as follows:
*
* getModel().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getModel() {
if (model == null) {
model = new ArrayList();
}
return this.model;
}
/**
* Gets the value of the operator property.
*
*
* 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 set
method for the operator property.
*
*
* For example, to add a new item, do as follows:
*
* getOperator().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link JaxbOperator }
*
*
*/
public List getOperator() {
if (operator == null) {
operator = new ArrayList();
}
return this.operator;
}
/**
* Gets the value of the version property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVersion() {
return version;
}
/**
* Sets the value of the version property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVersion(String value) {
this.version = value;
}
}