Package io.process4j.core.bpmn.model
Interface NodeElement
-
- All Known Implementing Classes:
BPMNActivity
,BPMNBusinessRuleTask
,BPMNEndEvent
,BPMNExclusiveGateway
,BPMNStartEvent
,BPMNSubProcess
,BPMNTask
public interface NodeElement
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<BPMNDocumentation>
getDocumentation()
String
getId()
List<BPMNIncoming>
getIncoming()
String
getName()
List<BPMNOutgoing>
getOutgoing()
-
-
-
Method Detail
-
getId
String getId()
-
getName
String getName()
-
getOutgoing
List<BPMNOutgoing> getOutgoing()
-
getIncoming
List<BPMNIncoming> getIncoming()
-
getDocumentation
List<BPMNDocumentation> getDocumentation()
-
-