// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833 // 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.04.12 at 12:36:45 PM BST // package org.savara.bpmn2.model; import java.math.BigInteger; 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.XmlIDREF; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for tActivity complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="tActivity"> * <complexContent> * <extension base="{http://www.omg.org/spec/BPMN/20100524/MODEL}tFlowNode"> * <sequence> * <element ref="{http://www.omg.org/spec/BPMN/20100524/MODEL}ioSpecification" minOccurs="0"/> * <element ref="{http://www.omg.org/spec/BPMN/20100524/MODEL}property" maxOccurs="unbounded" minOccurs="0"/> * <element ref="{http://www.omg.org/spec/BPMN/20100524/MODEL}dataInputAssociation" maxOccurs="unbounded" minOccurs="0"/> * <element ref="{http://www.omg.org/spec/BPMN/20100524/MODEL}dataOutputAssociation" maxOccurs="unbounded" minOccurs="0"/> * <element ref="{http://www.omg.org/spec/BPMN/20100524/MODEL}resourceRole" maxOccurs="unbounded" minOccurs="0"/> * <element ref="{http://www.omg.org/spec/BPMN/20100524/MODEL}loopCharacteristics" minOccurs="0"/> * </sequence> * <attribute name="isForCompensation" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" /> * <attribute name="startQuantity" type="{http://www.w3.org/2001/XMLSchema}integer" default="1" /> * <attribute name="completionQuantity" type="{http://www.w3.org/2001/XMLSchema}integer" default="1" /> * <attribute name="default" type="{http://www.w3.org/2001/XMLSchema}IDREF" /> * <anyAttribute processContents='lax' namespace='##other'/> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "tActivity", propOrder = { "ioSpecification", "property", "dataInputAssociation", "dataOutputAssociation", "resourceRole", "loopCharacteristics" }) @XmlSeeAlso({ TSubProcess.class, TTask.class, TCallActivity.class }) public abstract class TActivity extends TFlowNode { protected TInputOutputSpecification ioSpecification; protected List<TProperty> property; protected List<TDataInputAssociation> dataInputAssociation; protected List<TDataOutputAssociation> dataOutputAssociation; @XmlElementRef(name = "resourceRole", namespace = "http://www.omg.org/spec/BPMN/20100524/MODEL", type = JAXBElement.class) protected List<JAXBElement<? extends TResourceRole>> resourceRole; @XmlElementRef(name = "loopCharacteristics", namespace = "http://www.omg.org/spec/BPMN/20100524/MODEL", type = JAXBElement.class) protected JAXBElement<? extends TLoopCharacteristics> loopCharacteristics; @XmlAttribute protected Boolean isForCompensation; @XmlAttribute protected BigInteger startQuantity; @XmlAttribute protected BigInteger completionQuantity; @XmlAttribute(name = "default") @XmlIDREF @XmlSchemaType(name = "IDREF") protected Object _default; /** * Gets the value of the ioSpecification property. * * @return * possible object is * {@link TInputOutputSpecification } * */ public TInputOutputSpecification getIoSpecification() { return ioSpecification; } /** * Sets the value of the ioSpecification property. * * @param value * allowed object is * {@link TInputOutputSpecification } * */ public void setIoSpecification(TInputOutputSpecification value) { this.ioSpecification = value; } /** * Gets the value of the property 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 property property. * * <p> * For example, to add a new item, do as follows: * <pre> * getProperty().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link TProperty } * * */ public List<TProperty> getProperty() { if (property == null) { property = new ArrayList<TProperty>(); } return this.property; } /** * Gets the value of the dataInputAssociation 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 dataInputAssociation property. * * <p> * For example, to add a new item, do as follows: * <pre> * getDataInputAssociation().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link TDataInputAssociation } * * */ public List<TDataInputAssociation> getDataInputAssociation() { if (dataInputAssociation == null) { dataInputAssociation = new ArrayList<TDataInputAssociation>(); } return this.dataInputAssociation; } /** * Gets the value of the dataOutputAssociation 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 dataOutputAssociation property. * * <p> * For example, to add a new item, do as follows: * <pre> * getDataOutputAssociation().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link TDataOutputAssociation } * * */ public List<TDataOutputAssociation> getDataOutputAssociation() { if (dataOutputAssociation == null) { dataOutputAssociation = new ArrayList<TDataOutputAssociation>(); } return this.dataOutputAssociation; } /** * Gets the value of the resourceRole 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 resourceRole property. * * <p> * For example, to add a new item, do as follows: * <pre> * getResourceRole().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link TPerformer }{@code >} * {@link JAXBElement }{@code <}{@link THumanPerformer }{@code >} * {@link JAXBElement }{@code <}{@link TResourceRole }{@code >} * {@link JAXBElement }{@code <}{@link TPotentialOwner }{@code >} * * */ public List<JAXBElement<? extends TResourceRole>> getResourceRole() { if (resourceRole == null) { resourceRole = new ArrayList<JAXBElement<? extends TResourceRole>>(); } return this.resourceRole; } /** * Gets the value of the loopCharacteristics property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link TStandardLoopCharacteristics }{@code >} * {@link JAXBElement }{@code <}{@link TLoopCharacteristics }{@code >} * {@link JAXBElement }{@code <}{@link TMultiInstanceLoopCharacteristics }{@code >} * */ public JAXBElement<? extends TLoopCharacteristics> getLoopCharacteristics() { return loopCharacteristics; } /** * Sets the value of the loopCharacteristics property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link TStandardLoopCharacteristics }{@code >} * {@link JAXBElement }{@code <}{@link TLoopCharacteristics }{@code >} * {@link JAXBElement }{@code <}{@link TMultiInstanceLoopCharacteristics }{@code >} * */ public void setLoopCharacteristics(JAXBElement<? extends TLoopCharacteristics> value) { this.loopCharacteristics = ((JAXBElement<? extends TLoopCharacteristics> ) value); } /** * Gets the value of the isForCompensation property. * * @return * possible object is * {@link Boolean } * */ public boolean isIsForCompensation() { if (isForCompensation == null) { return false; } else { return isForCompensation; } } /** * Sets the value of the isForCompensation property. * * @param value * allowed object is * {@link Boolean } * */ public void setIsForCompensation(Boolean value) { this.isForCompensation = value; } /** * Gets the value of the startQuantity property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getStartQuantity() { if (startQuantity == null) { return new BigInteger("1"); } else { return startQuantity; } } /** * Sets the value of the startQuantity property. * * @param value * allowed object is * {@link BigInteger } * */ public void setStartQuantity(BigInteger value) { this.startQuantity = value; } /** * Gets the value of the completionQuantity property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getCompletionQuantity() { if (completionQuantity == null) { return new BigInteger("1"); } else { return completionQuantity; } } /** * Sets the value of the completionQuantity property. * * @param value * allowed object is * {@link BigInteger } * */ public void setCompletionQuantity(BigInteger value) { this.completionQuantity = value; } /** * Gets the value of the default property. * * @return * possible object is * {@link Object } * */ public Object getDefault() { return _default; } /** * Sets the value of the default property. * * @param value * allowed object is * {@link Object } * */ public void setDefault(Object value) { this._default = value; } }