org.jsxp.framework
Interface PhaseListener


public interface PhaseListener

The listener interface for receiving phase events. The class that is interested in processing a phase event implements this interface, and the object created with that class is registered with a component using the component's addPhaseListener method. When the phase event occurs, that object's appropriate method is invoked.


Method Summary
 void afterPhase(ViewControllerLifeCycle.LifeCyclePhase phase)
          After phase.
 void beforePhase(ViewControllerLifeCycle.LifeCyclePhase phase)
          Before phase.
 

Method Detail

afterPhase

void afterPhase(ViewControllerLifeCycle.LifeCyclePhase phase)
After phase.

Parameters:
phase - the phase

beforePhase

void beforePhase(ViewControllerLifeCycle.LifeCyclePhase phase)
Before phase.

Parameters:
phase - the phase


Copyright © 2012 Oliver Szymanski & David Tanzer