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

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

Subinterfaces of Owner in org.apache.commons.workflow
 interface Activity
          An Activity represents an ordered sequence of Steps that comprise the executable actions necessary to accomplish a business task.
 interface Block
          A Block is a Step that can include nested Steps.
 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).
 

Methods in org.apache.commons.workflow that return Owner
 Owner Step.getOwner()
          Return the Activity or Block that owns this Step.
 

Methods in org.apache.commons.workflow with parameters of type Owner
 void Step.setOwner(Owner owner)
          Set the Activity or Block that owns this Step.
 

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

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

Fields in org.apache.commons.workflow.base declared as Owner
protected  Owner BaseStep.owner
          The Activity or Block that owns this Step.
 

Methods in org.apache.commons.workflow.base that return Owner
 Owner BaseStep.getOwner()
          Return the Activity or Block that owns this Step.
 

Methods in org.apache.commons.workflow.base with parameters of type Owner
 void BaseStep.setOwner(Owner owner)
          Set the Activity or Block that owns this Step.
 

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

Classes in org.apache.commons.workflow.core that implement Owner
 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.