All Downloads are FREE. Search and download functionalities are using the official Maven repository.

es.us.isa.bpmn.xmlClasses.bpmn20.TActivity Maven / Gradle / Ivy

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2012.11.08 at 10:16:40 AM GMT+01:00 
//


package es.us.isa.bpmn.xmlClasses.bpmn20;

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;


/**
 * 

Java class for tActivity complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <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>
 * 
* * */ @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 property; protected List dataInputAssociation; protected List dataOutputAssociation; @XmlElementRef(name = "resourceRole", namespace = "http://www.omg.org/spec/BPMN/20100524/MODEL", type = JAXBElement.class) protected List> resourceRole; @XmlElementRef(name = "loopCharacteristics", namespace = "http://www.omg.org/spec/BPMN/20100524/MODEL", type = JAXBElement.class) protected JAXBElement 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. * *

* 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 property property. * *

* For example, to add a new item, do as follows: *

     *    getProperty().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link TProperty } * * */ public List getProperty() { if (property == null) { property = new ArrayList(); } return this.property; } /** * Gets the value of the dataInputAssociation 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 dataInputAssociation property. * *

* For example, to add a new item, do as follows: *

     *    getDataInputAssociation().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link TDataInputAssociation } * * */ public List getDataInputAssociation() { if (dataInputAssociation == null) { dataInputAssociation = new ArrayList(); } return this.dataInputAssociation; } /** * Gets the value of the dataOutputAssociation 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 dataOutputAssociation property. * *

* For example, to add a new item, do as follows: *

     *    getDataOutputAssociation().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link TDataOutputAssociation } * * */ public List getDataOutputAssociation() { if (dataOutputAssociation == null) { dataOutputAssociation = new ArrayList(); } return this.dataOutputAssociation; } /** * Gets the value of the resourceRole 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 resourceRole property. * *

* For example, to add a new item, do as follows: *

     *    getResourceRole().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link TResourceRole }{@code >} * {@link JAXBElement }{@code <}{@link THumanPerformer }{@code >} * {@link JAXBElement }{@code <}{@link TPotentialOwner }{@code >} * {@link JAXBElement }{@code <}{@link TPerformer }{@code >} * * */ public List> getResourceRole() { if (resourceRole == null) { resourceRole = new ArrayList>(); } return this.resourceRole; } /** * Gets the value of the loopCharacteristics property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link TMultiInstanceLoopCharacteristics }{@code >} * {@link JAXBElement }{@code <}{@link TStandardLoopCharacteristics }{@code >} * {@link JAXBElement }{@code <}{@link TLoopCharacteristics }{@code >} * */ public JAXBElement getLoopCharacteristics() { return loopCharacteristics; } /** * Sets the value of the loopCharacteristics property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link TMultiInstanceLoopCharacteristics }{@code >} * {@link JAXBElement }{@code <}{@link TStandardLoopCharacteristics }{@code >} * {@link JAXBElement }{@code <}{@link TLoopCharacteristics }{@code >} * */ public void setLoopCharacteristics(JAXBElement value) { this.loopCharacteristics = ((JAXBElement ) 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; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy