Uses of Interface
org.zkoss.zk.ui.event.EventListener

Packages that use EventListener
org.zkoss.zk.ui Interfaces of the common user-interfaces, such as Page and Component
org.zkoss.zk.ui.event The org.zkoss.zk.ui and org.zkoss.zk.ui.event packages are the only packages that component and application developers need to know. 
org.zkoss.zk.ui.event.impl Implementation of Event Queues 
org.zkoss.zk.ui.impl Implementation of user interfaces and factories (implementation only). 
org.zkoss.zk.ui.util Utilities to handle user interfaces. 
org.zkoss.zkplus.acegi Utilities to support Acegi Security System 
org.zkoss.zul ZUL component set that are used for HTML-based clients. 
org.zkoss.zul.ext Interfaces that might be implemented by ZUL components. 
org.zkoss.zul.impl Classes used to implement ZUL Component Set (implementation only). 
 

Uses of EventListener in org.zkoss.zk.ui
 

Methods in org.zkoss.zk.ui with parameters of type EventListener
 boolean Page.addEventListener(java.lang.String evtnm, EventListener listener)
          Adds an event listener to specified event for all components in this page.
 boolean Component.addEventListener(java.lang.String evtnm, EventListener listener)
          Adds an event listener to specified event for this component.
 boolean AbstractComponent.addEventListener(java.lang.String evtnm, EventListener listener)
           
 boolean Page.removeEventListener(java.lang.String evtnm, EventListener listener)
          Removes an event listener.
 boolean Component.removeEventListener(java.lang.String evtnm, EventListener listener)
          Removes an event listener.
 boolean AbstractComponent.removeEventListener(java.lang.String evtnm, EventListener listener)
           
 

Uses of EventListener in org.zkoss.zk.ui.event
 

Classes in org.zkoss.zk.ui.event that implement EventListener
 class GenericEventListener
          An abstract event listener that you can extend and write intuitive onXxx event handler methods; this class dispatch event to the implemented onXxx event handler methods automatically.
 

Methods in org.zkoss.zk.ui.event with parameters of type EventListener
 boolean EventQueue.isSubscribed(EventListener listener)
          Returns if an event listener is subscribed.
 void EventQueue.subscribe(EventListener listener)
          Subscribes a listener to this queue.
 void EventQueue.subscribe(EventListener listener, boolean async)
          Subscribes a synchronous or asynchronous listener to this event queue.
 void EventQueue.subscribe(EventListener listener, EventListener callback)
          Subscribes a synchronous or asynchronous listener to this event queue.
 boolean EventQueue.unsubscribe(EventListener listener)
          Unsubscribes a listener from the queue.
 

Uses of EventListener in org.zkoss.zk.ui.event.impl
 

Methods in org.zkoss.zk.ui.event.impl with parameters of type EventListener
 boolean ServerPushEventQueue.isSubscribed(EventListener listener)
           
 boolean DesktopEventQueue.isSubscribed(EventListener listener)
           
 void ServerPushEventQueue.subscribe(EventListener listener)
           
 void DesktopEventQueue.subscribe(EventListener listener)
           
 void ServerPushEventQueue.subscribe(EventListener listener, boolean async)
           
 void DesktopEventQueue.subscribe(EventListener listener, boolean async)
           
 void ServerPushEventQueue.subscribe(EventListener listener, EventListener callback)
           
 void DesktopEventQueue.subscribe(EventListener listener, EventListener callback)
           
 boolean ServerPushEventQueue.unsubscribe(EventListener listener)
           
 boolean DesktopEventQueue.unsubscribe(EventListener listener)
           
 

Uses of EventListener in org.zkoss.zk.ui.impl
 

Methods in org.zkoss.zk.ui.impl with parameters of type EventListener
 boolean PageImpl.addEventListener(java.lang.String evtnm, EventListener listener)
           
 boolean PageImpl.removeEventListener(java.lang.String evtnm, EventListener listener)
           
 

Uses of EventListener in org.zkoss.zk.ui.util
 

Classes in org.zkoss.zk.ui.util that implement EventListener
 class GenericAutowireComposer
          An abstract composer that you can extend and write intuitive onXxx event handler methods with "auto-wired" accessible variable objects such as implicit objects, components, and external resolvable variables in a ZK zuml page; this class will registers onXxx events to the supervised component and wire all accessible variable objects to this composer by calling setXxx() method or set xxx field value directly per the variable name.
 class GenericComposer
          An abstract composer that you can extend and write intuitive onXxx event handler methods; this class will registers onXxx events to the supervised component automatically.
 class GenericForwardComposer
          An abstract composer that you can extend and write intuitive onXxx$myid event handler methods with auto event forwarding and "auto-wired" accessible variable objects such as embedded objects, components, and external resolvable variables in a ZK zuml page; this class will add forward condition to the myid source component and forward source onXxx event received by the source myid component to the target onXxx$myid event (as defined in this composer) of the supervised target component; of course it will also registers onXxx$myid events to the supervised component and wire all accessible variable objects to this composer by calling setXxx() method or set xxx field value directly per the variable name.
 

Uses of EventListener in org.zkoss.zkplus.acegi
 

Classes in org.zkoss.zkplus.acegi that implement EventListener
 class ShowWindowEventListener
          The default listener to show a modal window for login and other things.
 

Uses of EventListener in org.zkoss.zul
 

Methods in org.zkoss.zul with parameters of type EventListener
 boolean Chart.addEventListener(java.lang.String evtnm, EventListener listener)
           
static int Messagebox.show(int messageCode, int titleCode, int buttons, java.lang.String icon, int focus, EventListener listener)
          Shows a message box by specifying a message code, and returns what button is pressed.
static int Messagebox.show(int messageCode, java.lang.Object[] args, int titleCode, int buttons, java.lang.String icon, int focus, EventListener listener)
          Shows a message box by specifying a message code, and returns what button is pressed.
static int Messagebox.show(int messageCode, java.lang.Object arg, int titleCode, int buttons, java.lang.String icon, int focus, EventListener listener)
          Shows a message box by specifying a message code, and returns what button is pressed.
static int Messagebox.show(java.lang.String message, java.lang.String title, int buttons, java.lang.String icon, EventListener listener)
          Shows a message box and returns what button is pressed.
static int Messagebox.show(java.lang.String message, java.lang.String title, int buttons, java.lang.String icon, int focus, EventListener listener)
          Shows a message box and returns what button is pressed.
 

Uses of EventListener in org.zkoss.zul.ext
 

Methods in org.zkoss.zul.ext with parameters of type EventListener
 boolean Paginal.addEventListener(java.lang.String evtnm, EventListener listener)
          Adds an event listener to specified event for this component.
 boolean Paginal.removeEventListener(java.lang.String evtnm, EventListener listener)
          Removes an event listener.
 

Uses of EventListener in org.zkoss.zul.impl
 

Methods in org.zkoss.zul.impl with parameters of type EventListener
 void MessageboxDlg.setEventListener(EventListener listener)
          Sets the event listener.
 



Copyright © 2005-2009 Potix Corporation. All Rights Reserved. SourceForge.net Logo