Class TThrowEvent
- java.lang.Object
-
- org.omg.spec.bpmn.model.TBaseElement
-
- org.omg.spec.bpmn.model.TFlowElement
-
- org.omg.spec.bpmn.model.TFlowNode
-
- org.omg.spec.bpmn.model.TEvent
-
- org.omg.spec.bpmn.model.TThrowEvent
-
- Direct Known Subclasses:
TEndEvent,TImplicitThrowEvent,TIntermediateThrowEvent
public abstract class TThrowEvent extends TEvent
Java class for tThrowEvent complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="tThrowEvent"> <complexContent> <extension base="{http://www.omg.org/spec/BPMN/20100524/MODEL}tEvent"> <sequence> <element ref="{http://www.omg.org/spec/BPMN/20100524/MODEL}dataInput" 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}inputSet" 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> <anyAttribute processContents='lax' namespace='##other'/> </extension> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<TDataInput>dataInputprotected List<TDataInputAssociation>dataInputAssociationprotected List<javax.xml.bind.JAXBElement<? extends TEventDefinition>>eventDefinitionprotected List<QName>eventDefinitionRefprotected TInputSetinputSet-
Fields inherited from class org.omg.spec.bpmn.model.TFlowElement
auditing, categoryValueRef, monitoring, name
-
Fields inherited from class org.omg.spec.bpmn.model.TBaseElement
documentation, extensionElements, id
-
-
Constructor Summary
Constructors Constructor Description TThrowEvent()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<TDataInput>getDataInput()Gets the value of the dataInput property.List<TDataInputAssociation>getDataInputAssociation()Gets the value of the dataInputAssociation property.List<javax.xml.bind.JAXBElement<? extends TEventDefinition>>getEventDefinition()Gets the value of the eventDefinition property.List<QName>getEventDefinitionRef()Gets the value of the eventDefinitionRef property.TInputSetgetInputSet()Gets the value of the inputSet property.voidsetInputSet(TInputSet value)Sets the value of the inputSet property.-
Methods inherited from class org.omg.spec.bpmn.model.TEvent
getProperty
-
Methods inherited from class org.omg.spec.bpmn.model.TFlowNode
getIncoming, getOutgoing
-
Methods inherited from class org.omg.spec.bpmn.model.TFlowElement
getAuditing, getCategoryValueRef, getMonitoring, getName, setAuditing, setMonitoring, setName
-
Methods inherited from class org.omg.spec.bpmn.model.TBaseElement
getDocumentation, getExtensionElements, getId, getOtherAttributes, setExtensionElements, setId
-
-
-
-
Field Detail
-
dataInput
protected List<TDataInput> dataInput
-
dataInputAssociation
protected List<TDataInputAssociation> dataInputAssociation
-
inputSet
protected TInputSet inputSet
-
eventDefinition
protected List<javax.xml.bind.JAXBElement<? extends TEventDefinition>> eventDefinition
-
-
Method Detail
-
getDataInput
public List<TDataInput> getDataInput()
Gets the value of the dataInput 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
setmethod for the dataInput property.For example, to add a new item, do as follows:
getDataInput().add(newItem);Objects of the following type(s) are allowed in the list
TDataInput
-
getDataInputAssociation
public List<TDataInputAssociation> getDataInputAssociation()
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
setmethod 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
TDataInputAssociation
-
getInputSet
public TInputSet getInputSet()
Gets the value of the inputSet property.- Returns:
- possible object is
TInputSet
-
setInputSet
public void setInputSet(TInputSet value)
Sets the value of the inputSet property.- Parameters:
value- allowed object isTInputSet
-
getEventDefinition
public List<javax.xml.bind.JAXBElement<? extends TEventDefinition>> getEventDefinition()
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
setmethod 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
JAXBElement<TSignalEventDefinition>JAXBElement<TTimerEventDefinition>JAXBElement<TConditionalEventDefinition>JAXBElement<TCompensateEventDefinition>JAXBElement<TErrorEventDefinition>JAXBElement<TTerminateEventDefinition>JAXBElement<TEscalationEventDefinition>JAXBElement<TCancelEventDefinition>JAXBElement<TLinkEventDefinition>JAXBElement<TMessageEventDefinition>JAXBElement<TEventDefinition>
-
getEventDefinitionRef
public List<QName> getEventDefinitionRef()
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
setmethod 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
QName
-
-