public abstract class ProcessNode extends Object
Constructor and Description |
---|
ProcessNode() |
Modifier and Type | Method and Description |
---|---|
String |
getId()
Returns the unique identifier of the process node.
|
List<Transition> |
getIncomingTransitions()
Returns a list of transitions pointing from another process node to this one.
|
List<Transition> |
getOutgoingTransitions()
Returns a list of transitions pointing from this process node to another one.
|
void |
setId(String id)
Sets the unique identifier of the process node.
|
void |
setIncomingTransitions(List<Transition> incomingTransitions)
Sets the list of transitions pointing from another process node to this one.
|
void |
setOutgoingTransitions(List<Transition> outgoingTransitions)
Sets the list of transitions pointing from this process node to another one.
|
public String getId()
null
if process node comes from a process definition from
ProcessDefinitionParser
).public void setId(String id)
id
- The unique identifier.public List<Transition> getOutgoingTransitions()
null
if process node comes from a process definition from ProcessDefinitionParser
).public void setOutgoingTransitions(List<Transition> outgoingTransitions)
outgoingTransitions
- The list of transitions originating from this process node.public List<Transition> getIncomingTransitions()
null
if process node comes from a process definition from ProcessDefinitionParser
).public void setIncomingTransitions(List<Transition> incomingTransitions)
incomingTransitions
- A list of transitions pointing to this process node.Copyright © 2017. All rights reserved.