com.x8ing.mc.bp.develop
Class FixAllKnownBugsAction

java.lang.Object
  extended by com.x8ing.mc.bp.AbstractBusinessAction
      extended by com.x8ing.mc.bp.develop.FixAllKnownBugsAction
All Implemented Interfaces:
Action

public class FixAllKnownBugsAction
extends AbstractBusinessAction

Author:
Patrick Heusser

Field Summary
static Bug.BugState[] STATES_TO_FIX
          all bugs in that state must be fixed.
 
Fields inherited from class com.x8ing.mc.bp.AbstractBusinessAction
businessContext, currentState
 
Constructor Summary
FixAllKnownBugsAction()
           
 
Method Summary
 void execute(ProcessableState currentState, BusinessContext businessContext, Condition previousCondition, java.util.List lastVisitedStatesHistory)
          abstract to force implementors to implement that method.
protected  void lazyInit()
          hook just before the execute will be executed. will just be called once in the lifetime of an action.
 
Methods inherited from class com.x8ing.mc.bp.AbstractBusinessAction
addBalanceSheetTransaction, addLogBookEntry, execute
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

STATES_TO_FIX

public static final Bug.BugState[] STATES_TO_FIX
all bugs in that state must be fixed.

Constructor Detail

FixAllKnownBugsAction

public FixAllKnownBugsAction()
Method Detail

execute

public void execute(ProcessableState currentState,
                    BusinessContext businessContext,
                    Condition previousCondition,
                    java.util.List lastVisitedStatesHistory)
Description copied from class: AbstractBusinessAction
abstract to force implementors to implement that method.

Specified by:
execute in class AbstractBusinessAction
See Also:
AbstractBusinessAction.execute(com.x8ing.lsm4j.state.ProcessableState, com.x8ing.mc.bp.BusinessContext, com.x8ing.lsm4j.Condition, java.util.List)

lazyInit

protected void lazyInit()
Description copied from class: AbstractBusinessAction
hook just before the execute will be executed. will just be called once in the lifetime of an action.

Specified by:
lazyInit in class AbstractBusinessAction


by Patrick Heusser