// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 // 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: 2010.12.20 at 06:00:42 PM CET // package de.osmui.model.osm; 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.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** * Describes a single Osmosis task. * * <p>Java class for tTask complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="tTask"> * <complexContent> * <extension base="{http://uni-stuttgart.de/iev/osmosisTaskDescription}tHasDescription"> * <sequence> * <element ref="{http://uni-stuttgart.de/iev/osmosisTaskDescription}inputPipe" maxOccurs="unbounded" minOccurs="0"/> * <element ref="{http://uni-stuttgart.de/iev/osmosisTaskDescription}outputPipe" maxOccurs="unbounded" minOccurs="0"/> * <element ref="{http://uni-stuttgart.de/iev/osmosisTaskDescription}parameter" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="shortName" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="friendlyName" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="helpURI" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> * </extension> * </complexContent> * </complexType> * </pre> * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "tTask", propOrder = { "inputPipe", "outputPipe", "parameter" }) public class TTask extends THasDescription { protected List<TPipe> inputPipe; protected List<TPipe> outputPipe; protected List<TParameter> parameter; @XmlAttribute(required = true) protected String name; @XmlAttribute protected String shortName; @XmlAttribute protected String friendlyName; @XmlAttribute @XmlSchemaType(name = "anyURI") protected String helpURI; /** * Gets the value of the inputPipe 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 inputPipe property. * * <p> * For example, to add a new item, do as follows: * <pre> * getInputPipe().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link TPipe } * * */ public List<TPipe> getInputPipe() { if (inputPipe == null) { inputPipe = new ArrayList<TPipe>(); } return this.inputPipe; } /** * Gets the value of the outputPipe 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 outputPipe property. * * <p> * For example, to add a new item, do as follows: * <pre> * getOutputPipe().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link TPipe } * * */ public List<TPipe> getOutputPipe() { if (outputPipe == null) { outputPipe = new ArrayList<TPipe>(); } return this.outputPipe; } /** * Gets the value of the parameter 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 parameter property. * * <p> * For example, to add a new item, do as follows: * <pre> * getParameter().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link TParameter } * * */ public List<TParameter> getParameter() { if (parameter == null) { parameter = new ArrayList<TParameter>(); } return this.parameter; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the shortName property. * * @return * possible object is * {@link String } * */ public String getShortName() { return shortName; } /** * Sets the value of the shortName property. * * @param value * allowed object is * {@link String } * */ public void setShortName(String value) { this.shortName = value; } /** * Gets the value of the friendlyName property. * * @return * possible object is * {@link String } * */ public String getFriendlyName() { return friendlyName; } /** * Sets the value of the friendlyName property. * * @param value * allowed object is * {@link String } * */ public void setFriendlyName(String value) { this.friendlyName = value; } /** * Gets the value of the helpURI property. * * @return * possible object is * {@link String } * */ public String getHelpURI() { return helpURI; } /** * Sets the value of the helpURI property. * * @param value * allowed object is * {@link String } * */ public void setHelpURI(String value) { this.helpURI = value; } }