Package org.camunda.bpm.engine.impl.tree
Class ScopeExecutionCollector
- java.lang.Object
-
- org.camunda.bpm.engine.impl.tree.ScopeExecutionCollector
-
- All Implemented Interfaces:
TreeVisitor<PvmExecutionImpl>
public class ScopeExecutionCollector extends Object implements TreeVisitor<PvmExecutionImpl>
- Author:
- Thorben Lindhauer
-
-
Field Summary
Fields Modifier and Type Field Description protected List<PvmExecutionImpl>
scopeExecutions
-
Constructor Summary
Constructors Constructor Description ScopeExecutionCollector()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<PvmExecutionImpl>
getScopeExecutions()
void
visit(PvmExecutionImpl obj)
Invoked for a node in tree.
-
-
-
Field Detail
-
scopeExecutions
protected List<PvmExecutionImpl> scopeExecutions
-
-
Method Detail
-
visit
public void visit(PvmExecutionImpl obj)
Description copied from interface:TreeVisitor
Invoked for a node in tree.- Specified by:
visit
in interfaceTreeVisitor<PvmExecutionImpl>
- Parameters:
obj
- a reference to the node
-
getScopeExecutions
public List<PvmExecutionImpl> getScopeExecutions()
-
-