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

Constructor Index

 o FlowIteration()

Method Index

 o followAction(Module)
For all modules that are checked and that fulfil the modulePreCondition condition run this method.
 o modulePostCondition(Module)
Continue to the connected modules (via the outConnectors) if this method returns true.
 o modulePreCondition(Module)
Run the followAction when this method returns true.

Constructors

 o FlowIteration
 FlowIteration()

Methods

 o followAction
 abstract void followAction(Module m)
For all modules that are checked and that fulfil the modulePreCondition condition run this method.

See Also:
modulePreCondition
 o modulePreCondition
 abstract boolean modulePreCondition(Module m)
Run the followAction when this method returns true.

See Also:
followAction
 o modulePostCondition
 abstract boolean modulePostCondition(Module m)
Continue to the connected modules (via the outConnectors) if this method returns true.

See Also:
OutConnector