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 void
postPhase(Phase phase, BindContext ctx)
Callbacks after each phase.void
prePhase(Phase phase, BindContext ctx)
Callbacks before each phase.
-
-
-
Method Detail
-
prePhase
public void prePhase(Phase phase, BindContext ctx)
Description copied from interface:PhaseListener
Callbacks before each phase.- Specified by:
prePhase
in interfacePhaseListener
- Parameters:
phase
- the phase idctx
- the associatedBindContext
-
postPhase
public void postPhase(Phase phase, BindContext ctx)
Description copied from interface:PhaseListener
Callbacks after each phase.- Specified by:
postPhase
in interfacePhaseListener
- Parameters:
phase
- the phase idctx
- the associatedBindContext
-
-