// // This file was generated by the Eclipse Implementation of JAXB, v2.3.3 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2024.10.27 at 05:48:07 PM CET // package de.uni_freiburg.informatik.ultimate.test.benchexec.benchmark; import java.util.ArrayList; import java.util.List; import javax.xml.bind.JAXBElement; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElementRef; import javax.xml.bind.annotation.XmlElementRefs; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlSchemaType; 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&gt; * &lt;complexContent&gt; * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt; * &lt;choice maxOccurs="unbounded" minOccurs="0"&gt; * &lt;element ref="{}include"/&gt; * &lt;element ref="{}includesfile"/&gt; * &lt;element ref="{}exclude"/&gt; * &lt;element ref="{}excludesfile"/&gt; * &lt;element ref="{}append"/&gt; * &lt;element ref="{}withoutfile"/&gt; * &lt;element ref="{}option"/&gt; * &lt;element ref="{}propertyfile"/&gt; * &lt;element ref="{}requiredfiles"/&gt; * &lt;/choice&gt; * &lt;attribute name="name" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" /&gt; * &lt;/restriction&gt; * &lt;/complexContent&gt; * &lt;/complexType&gt; * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "includeOrIncludesfileOrExclude" }) @XmlRootElement(name = "tasks") public class Tasks { @XmlElementRefs({ @XmlElementRef(name = "include", type = JAXBElement.class, required = false), @XmlElementRef(name = "includesfile", type = JAXBElement.class, required = false), @XmlElementRef(name = "exclude", type = JAXBElement.class, required = false), @XmlElementRef(name = "excludesfile", type = JAXBElement.class, required = false), @XmlElementRef(name = "append", type = JAXBElement.class, required = false), @XmlElementRef(name = "withoutfile", type = JAXBElement.class, required = false), @XmlElementRef(name = "option", type = Option.class, required = false), @XmlElementRef(name = "propertyfile", type = JAXBElement.class, required = false), @XmlElementRef(name = "requiredfiles", type = JAXBElement.class, required = false) }) protected List includeOrIncludesfileOrExclude; @XmlAttribute(name = "name") @XmlSchemaType(name = "anySimpleType") protected String name; /** * Gets the value of the includeOrIncludesfileOrExclude 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 includeOrIncludesfileOrExclude property. * * <p> * For example, to add a new item, do as follows: * <pre> * getIncludeOrIncludesfileOrExclude().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link Option } * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ public List getIncludeOrIncludesfileOrExclude() { if (includeOrIncludesfileOrExclude == null) { includeOrIncludesfileOrExclude = new ArrayList(); } return this.includeOrIncludesfileOrExclude; } /** * 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; } }