Class SinglePhaseAction

java.lang.Object
org.kquiet.browser.action.MultiPhaseAction
org.kquiet.browser.action.SinglePhaseAction
All Implemented Interfaces:
Composable, MultiPhased
Direct Known Subclasses:
CloseWindow, GetUrl, IfThenElse, OpenWindow, PostForm

public abstract class SinglePhaseAction extends MultiPhaseAction
SinglePhaseAction is a subclass of MultiPhaseAction which has only one phase.
Author:
Kimberly
  • Constructor Details

    • SinglePhaseAction

      public SinglePhaseAction()
  • Method Details

    • performMultiPhase

      protected void performMultiPhase()
      Description copied from class: MultiPhaseAction
      Perform multiple-phased browser action. MultiPhaseAction.noNextPhase() needs to be invoked to signal that there is no more phase to execute.
      Specified by:
      performMultiPhase in class MultiPhaseAction
    • performSinglePhase

      protected abstract void performSinglePhase()
      Perform single-phased browser action.