Uses of Class
org.apache.commons.workflow.BlockState

Packages that use BlockState
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 BlockState in org.apache.commons.workflow
 

Methods in org.apache.commons.workflow that return BlockState
 BlockState Context.peekBlockState()
          Return the top item from the BlockState stack without removing it.
 BlockState Context.popBlockState()
          Pop and return the top item from the BlockState stack.
 

Methods in org.apache.commons.workflow with parameters of type BlockState
 void Context.pushBlockState(BlockState item)
          Push a new item onto the top of the BlockState stack.
 

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

Methods in org.apache.commons.workflow.base that return BlockState
 BlockState BaseContext.peekBlockState()
          Return the top item from the BlockState stack without removing it.
 BlockState BaseContext.popBlockState()
          Pop and return the top item from the BlockState stack.
protected  BlockState BaseBlock.state(Context context)
          Peek at the top BlockState element on the stack maintained by our Context, and return it.
 

Methods in org.apache.commons.workflow.base with parameters of type BlockState
 void BaseContext.pushBlockState(BlockState item)
          Push a new item onto the top of the BlockState stack.
protected  void BaseBlock.subsequent(Context context, BlockState state)
          Process the return from nested execution of the Steps associated with this Block.
 

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

Methods in org.apache.commons.workflow.core with parameters of type BlockState
protected  void WhileStep.subsequent(Context context, BlockState state)
          Process the return from nested execution of the Steps assocaited with this Block.
 



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