org.omg.spec.bpmn.model.TCatchEvent Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.2
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2020.10.05 at 10:10:30 AM UTC
//
package org.omg.spec.bpmn.model;
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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import javax.xml.namespace.QName;
/**
* Java class for tCatchEvent complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="tCatchEvent">
* <complexContent>
* <extension base="{http://www.omg.org/spec/BPMN/20100524/MODEL}tEvent">
* <sequence>
* <element ref="{http://www.omg.org/spec/BPMN/20100524/MODEL}dataOutput" 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}outputSet" minOccurs="0"/>
* <element ref="{http://www.omg.org/spec/BPMN/20100524/MODEL}eventDefinition" maxOccurs="unbounded" minOccurs="0"/>
* <element name="eventDefinitionRef" type="{http://www.w3.org/2001/XMLSchema}QName" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* <attribute name="parallelMultiple" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
* <anyAttribute processContents='lax' namespace='##other'/>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "tCatchEvent", propOrder = {
"dataOutput",
"dataOutputAssociation",
"outputSet",
"eventDefinition",
"eventDefinitionRef"
})
@XmlSeeAlso({
TBoundaryEvent.class,
TIntermediateCatchEvent.class,
TStartEvent.class
})
public abstract class TCatchEvent
extends TEvent
{
protected List dataOutput;
protected List dataOutputAssociation;
protected TOutputSet outputSet;
@XmlElementRef(name = "eventDefinition", namespace = "http://www.omg.org/spec/BPMN/20100524/MODEL", type = JAXBElement.class, required = false)
protected List> eventDefinition;
protected List eventDefinitionRef;
@XmlAttribute(name = "parallelMultiple")
protected Boolean parallelMultiple;
/**
* Gets the value of the dataOutput 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 dataOutput property.
*
*
* For example, to add a new item, do as follows:
*
* getDataOutput().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link TDataOutput }
*
*
*/
public List getDataOutput() {
if (dataOutput == null) {
dataOutput = new ArrayList();
}
return this.dataOutput;
}
/**
* 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 outputSet property.
*
* @return
* possible object is
* {@link TOutputSet }
*
*/
public TOutputSet getOutputSet() {
return outputSet;
}
/**
* Sets the value of the outputSet property.
*
* @param value
* allowed object is
* {@link TOutputSet }
*
*/
public void setOutputSet(TOutputSet value) {
this.outputSet = value;
}
/**
* Gets the value of the eventDefinition 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 eventDefinition property.
*
*
* For example, to add a new item, do as follows:
*
* getEventDefinition().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link JAXBElement }{@code <}{@link TSignalEventDefinition }{@code >}
* {@link JAXBElement }{@code <}{@link TTimerEventDefinition }{@code >}
* {@link JAXBElement }{@code <}{@link TConditionalEventDefinition }{@code >}
* {@link JAXBElement }{@code <}{@link TCompensateEventDefinition }{@code >}
* {@link JAXBElement }{@code <}{@link TErrorEventDefinition }{@code >}
* {@link JAXBElement }{@code <}{@link TTerminateEventDefinition }{@code >}
* {@link JAXBElement }{@code <}{@link TEscalationEventDefinition }{@code >}
* {@link JAXBElement }{@code <}{@link TCancelEventDefinition }{@code >}
* {@link JAXBElement }{@code <}{@link TLinkEventDefinition }{@code >}
* {@link JAXBElement }{@code <}{@link TMessageEventDefinition }{@code >}
* {@link JAXBElement }{@code <}{@link TEventDefinition }{@code >}
*
*
*/
public List> getEventDefinition() {
if (eventDefinition == null) {
eventDefinition = new ArrayList>();
}
return this.eventDefinition;
}
/**
* Gets the value of the eventDefinitionRef 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 eventDefinitionRef property.
*
*
* For example, to add a new item, do as follows:
*
* getEventDefinitionRef().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link QName }
*
*
*/
public List getEventDefinitionRef() {
if (eventDefinitionRef == null) {
eventDefinitionRef = new ArrayList();
}
return this.eventDefinitionRef;
}
/**
* Gets the value of the parallelMultiple property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public boolean isParallelMultiple() {
if (parallelMultiple == null) {
return false;
} else {
return parallelMultiple;
}
}
/**
* Sets the value of the parallelMultiple property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setParallelMultiple(Boolean value) {
this.parallelMultiple = value;
}
}