Uses of Interface
org.zkoss.zk.ui.util.Callback
-
Packages that use Callback Package Description org.zkoss.zk.ui org.zkoss.zk.ui.impl org.zkoss.zk.ui.sys org.zkoss.zk.ui.util -
-
Uses of Callback in org.zkoss.zk.ui
Methods in org.zkoss.zk.ui that return types with arguments of type Callback Modifier and Type Method Description java.util.Collection<Callback>AbstractComponent. getCallback(java.lang.String name)java.util.Collection<Callback<ContentRenderer>>AbstractComponent. getRedrawCallback()Methods in org.zkoss.zk.ui with parameters of type Callback Modifier and Type Method Description booleanAbstractComponent. addCallback(java.lang.String name, Callback callback)booleanAbstractComponent. addRedrawCallback(Callback<ContentRenderer> callback)booleanAbstractComponent. removeCallback(java.lang.String name, Callback callback)booleanAbstractComponent. removeRedrawCallback(Callback<ContentRenderer> callback) -
Uses of Callback in org.zkoss.zk.ui.impl
Methods in org.zkoss.zk.ui.impl with parameters of type Callback Modifier and Type Method Description voidAbstractExecution. addOnActivate(Callback callback)Adds a callback method to be executed only once after the execution activated.voidAbstractExecution. addOnDeactivate(Callback callback)Adds a callback method to be executed only once after the execution deactivated. -
Uses of Callback in org.zkoss.zk.ui.sys
Methods in org.zkoss.zk.ui.sys that return types with arguments of type Callback Modifier and Type Method Description java.util.Collection<Callback>ComponentCtrl. getCallback(java.lang.String name)Returns all of callbacks by specific nameMethods in org.zkoss.zk.ui.sys with parameters of type Callback Modifier and Type Method Description booleanComponentCtrl. addCallback(java.lang.String name, Callback callback)Adds a callback at component in specific namevoidExecutionCtrl. addOnActivate(Callback callback)Adds a callback method to be executed only once after the execution activated.voidExecutionCtrl. addOnDeactivate(Callback callback)Adds a callback method to be executed only once after the execution being deactivated (i.e. do the callback inExecutionCtrl.onBeforeDeactivate().booleanComponentCtrl. removeCallback(java.lang.String name, Callback callback)Removes a callback for component by specific name. -
Uses of Callback in org.zkoss.zk.ui.util
Methods in org.zkoss.zk.ui.util with parameters of type Callback Modifier and Type Method Description voidConfiguration. registerCallBack(java.lang.String name, Callback callback)Register a callback functioncall(Object data)
-