Class FlowIteration
java.lang.Object
|
+----FlowIteration
- abstract class FlowIteration
- extends Object
An abstract class that defines methods that are called in the FlowDown-
ModuleStoreIterator clas. The methods declared here can be defined by sub
classes of this abstract class (i.e. MarkModule).
- See Also:
- FlowDownModuleStoreIterator, MarkModule
-
FlowIteration()
-
-
followAction(Module)
- For all modules that are checked and that fulfil the
modulePreCondition condition run this method.
-
modulePostCondition(Module)
- Continue to the connected modules (via the outConnectors) if this
method returns true.
-
modulePreCondition(Module)
- Run the followAction when this method returns true.
FlowIteration
FlowIteration()
followAction
abstract void followAction(Module m)
- For all modules that are checked and that fulfil the
modulePreCondition condition run this method.
- See Also:
- modulePreCondition
modulePreCondition
abstract boolean modulePreCondition(Module m)
- Run the followAction when this method returns true.
- See Also:
- followAction
modulePostCondition
abstract boolean modulePostCondition(Module m)
- Continue to the connected modules (via the outConnectors) if this
method returns true.
- See Also:
- OutConnector