Package org.zkoss.zuti.bind
Class ZutiPhaseListener
- java.lang.Object
-
- org.zkoss.zuti.bind.ZutiPhaseListener
-
- All Implemented Interfaces:
PhaseListener
public class ZutiPhaseListener extends java.lang.Object implements PhaseListener
A bind phase listener for Zuti addon- Since:
- 8.0.0
- Author:
- jumperchen
-
-
Constructor Summary
Constructors Constructor Description ZutiPhaseListener()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidpostPhase(Phase phase, BindContext ctx)Callbacks after each phase.voidprePhase(Phase phase, BindContext ctx)Callbacks before each phase.
-
-
-
Method Detail
-
prePhase
public void prePhase(Phase phase, BindContext ctx)
Description copied from interface:PhaseListenerCallbacks before each phase.- Specified by:
prePhasein interfacePhaseListener- Parameters:
phase- the phase idctx- the associatedBindContext
-
postPhase
public void postPhase(Phase phase, BindContext ctx)
Description copied from interface:PhaseListenerCallbacks after each phase.- Specified by:
postPhasein interfacePhaseListener- Parameters:
phase- the phase idctx- the associatedBindContext
-
-