// 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.XmlType; /** * Describes a group of tasks. * * <p>Java class for tTaskGroup complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="tTaskGroup"> * <complexContent> * <extension base="{http://uni-stuttgart.de/iev/osmosisTaskDescription}tHasDescription"> * <sequence> * <element ref="{http://uni-stuttgart.de/iev/osmosisTaskDescription}task" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="friendlyName" type="{http://www.w3.org/2001/XMLSchema}string" /> * </extension> * </complexContent> * </complexType> * </pre> * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "tTaskGroup", propOrder = { "task" }) public class TTaskGroup extends THasDescription { protected List<TTask> task; @XmlAttribute(required = true) protected String id; @XmlAttribute protected String friendlyName; /** * Gets the value of the task 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 task property. * * <p> * For example, to add a new item, do as follows: * <pre> * getTask().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link TTask } * * */ public List<TTask> getTask() { if (task == null) { task = new ArrayList<TTask>(); } return this.task; } /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = 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; } }