Package org.zkoss.bind.impl
Class ClientBinderPhaseListener
- java.lang.Object
-
- org.zkoss.bind.impl.ClientBinderPhaseListener
-
- All Implemented Interfaces:
PhaseListener
public class ClientBinderPhaseListener extends java.lang.Object implements PhaseListener
A client command binding phase listener.- Since:
- 8.0.0
- Author:
- jumperchen
-
-
Constructor Summary
Constructors Constructor Description ClientBinderPhaseListener()
-
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
-
-