Uses of Interface
org.apache.commons.workflow.Block

Packages that use Block
org.apache.commons.workflow This package contains the core interfaces and classes that define the major components of the workflow management system. 
org.apache.commons.workflow.base Basic implementations and base classes for Workflow Management System applications. 
org.apache.commons.workflow.core Implementations of Steps in the core library. 
 

Uses of Block in org.apache.commons.workflow
 

Subinterfaces of Block in org.apache.commons.workflow
 interface Iterator
          An Iterator is a Block that conditionally repeats the nested Steps associated with the Block more than once (such as a Block that implements "while" or "for" functionality).
 

Fields in org.apache.commons.workflow declared as Block
protected  Block BlockState.block
          The Block whose state is represented by this object.
 

Methods in org.apache.commons.workflow that return Block
 Block BlockState.getBlock()
           
 

Constructors in org.apache.commons.workflow with parameters of type Block
BlockState(Block block, boolean nest)
          Construct a new BlockState instance, associated with the specified block, and with the specified initial value for the nest property.
 

Uses of Block in org.apache.commons.workflow.base
 

Classes in org.apache.commons.workflow.base that implement Block
 class BaseBlock
          BaseBlock is a convenient base class for more sophisticated Block implementations.
 

Uses of Block in org.apache.commons.workflow.core
 

Classes in org.apache.commons.workflow.core that implement Block
 class IfAnyStep
          Evaluate properties specified by the associated Descriptors, and execute the nested Steps if and only if ANY of them evaluate to a positive result.
 class IfNotAnyStep
          Evaluate properties specified by the associated Descriptors, and execute the nested Steps if and only if ALL of them evaluate to a negative result.
 class IfNotStep
          Evaluate properties specified by the associated Descriptors, and execute the nested Steps if and only if ANY of them evaluate to a negative result.
 class IfStep
          Evaluate properties specified by the associated Descriptors, and execute the nested Steps if and only if they ALL evaluate to a positive result.
 class WhileAnyStep
          Repeatedly evaluate the properties specified by the associated Descriptors, and execute the nested Steps if and only if ANY of them evaluate to a positive result.
 class WhileNotAnyStep
          Repeatedly evaluate the properties specified by the associated Descriptors, and execute the nested Steps if and only if ALL of them evaluate to a negative result.
 class WhileNotStep
          Repeatedly evaluate the properties specified by the associated Descriptors, and execute the nested Steps if and only if ANY of them evaluate to a negative result.
 class WhileStep
          Repeatedly evaluate the properties specified by the associated Descriptors, and execute the nested Steps if and only if ALL of them evaluate to a positive result.
 



Copyright © 2001-2010 The Apache Software Foundation. All Rights Reserved.