Class TFlowNode
- java.lang.Object
-
- org.omg.spec.bpmn.model.TBaseElement
-
- org.omg.spec.bpmn.model.TFlowElement
-
- org.omg.spec.bpmn.model.TFlowNode
-
- Direct Known Subclasses:
TActivity
,TChoreographyActivity
,TEvent
,TGateway
public abstract class TFlowNode extends TFlowElement
Java class for tFlowNode complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="tFlowNode"> <complexContent> <extension base="{http://www.omg.org/spec/BPMN/20100524/MODEL}tFlowElement"> <sequence> <element name="incoming" type="{http://www.w3.org/2001/XMLSchema}QName" maxOccurs="unbounded" minOccurs="0"/> <element name="outgoing" 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<QName>
incoming
protected List<QName>
outgoing
-
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 TFlowNode()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<QName>
getIncoming()
Gets the value of the incoming property.List<QName>
getOutgoing()
Gets the value of the outgoing property.-
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
-
getIncoming
public List<QName> getIncoming()
Gets the value of the incoming 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 incoming property.For example, to add a new item, do as follows:
getIncoming().add(newItem);
Objects of the following type(s) are allowed in the list
QName
-
getOutgoing
public List<QName> getOutgoing()
Gets the value of the outgoing 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 outgoing property.For example, to add a new item, do as follows:
getOutgoing().add(newItem);
Objects of the following type(s) are allowed in the list
QName
-
-