Package org.omg.spec.bpmn.model
Class TEvent
- 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
-
- Direct Known Subclasses:
TCatchEvent
,TThrowEvent
public abstract class TEvent extends TFlowNode
Java class for tEvent complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="tEvent"> <complexContent> <extension base="{http://www.omg.org/spec/BPMN/20100524/MODEL}tFlowNode"> <sequence> <element ref="{http://www.omg.org/spec/BPMN/20100524/MODEL}property" maxOccurs="unbounded" minOccurs="0"/> </sequence> <anyAttribute processContents='lax' namespace='##other'/> </extension> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<TProperty>
property
-
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 TEvent()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<TProperty>
getProperty()
Gets the value of the property property.-
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
-
-
-
-
Method Detail
-
getProperty
public List<TProperty> getProperty()
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
TProperty
-
-