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.select Utilities of ZK Component Selector, which retrieves components by selector rules, like CSS selectors. 
org.zkoss.zk.ui.sys Internal interfaces of user interfaces and factories (behind the scene). 
org.zkoss.zk.ui.util Utilities to handle user interfaces. 
org.zkoss.zkex.ui.comet ZK comet implementation. 
org.zkoss.zkmax.ui.event.impl Implementation of EventQueueProvider. 
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 that return types with arguments of type EventListener
 java.lang.Iterable<EventListener<? extends Event>> Page.getEventListeners(java.lang.String evtnm)
          Returns an iterable collection of the event listeners for the given event.
 java.lang.Iterable<EventListener<? extends Event>> Component.getEventListeners(java.lang.String evtnm)
          Returns an iterable collection of the event listeners for the given event.
 java.lang.Iterable<EventListener<? extends Event>> AbstractComponent.getEventListeners(java.lang.String evtnm)
           
 java.util.Iterator<EventListener<? extends Event>> Page.getListenerIterator(java.lang.String evtnm)
          Deprecated. As of release 6.0, replaced with Page.getEventListeners(java.lang.String). Returns an iterator for iterating the event listeners for the given event.
 java.util.Iterator<EventListener<? extends Event>> Component.getListenerIterator(java.lang.String evtnm)
          Deprecated. As of release 6.0, replaced with Component.getEventListeners(java.lang.String). Returns an iterator for iterating the event listeners for the given event.
 java.util.Iterator<EventListener<? extends Event>> AbstractComponent.getListenerIterator(java.lang.String evtnm)
          Deprecated. As of release 6.0, replaced with AbstractComponent.getEventListeners(java.lang.String).
 

Methods in org.zkoss.zk.ui with parameters of type EventListener
 boolean Component.addEventListener(int priority, java.lang.String evtnm, EventListener<? extends Event> listener)
          Adds an event listener to specified event name for this component with the given priority.
 boolean AbstractComponent.addEventListener(int priority, java.lang.String evtnm, EventListener<? extends Event> listener)
           
 boolean Page.addEventListener(java.lang.String evtnm, EventListener<? extends Event> listener)
          Adds an event listener to specified event for all components in this page.
 boolean Component.addEventListener(java.lang.String evtnm, EventListener<? extends Event> listener)
          Adds an event listener to specified event name for this component.
 boolean AbstractComponent.addEventListener(java.lang.String evtnm, EventListener<? extends Event> listener)
           
 boolean Page.removeEventListener(java.lang.String evtnm, EventListener<? extends Event> listener)
          Removes an event listener.
 boolean Component.removeEventListener(java.lang.String evtnm, EventListener<? extends Event> listener)
          Removes an event listener.
 boolean AbstractComponent.removeEventListener(java.lang.String evtnm, EventListener<? extends Event> listener)
           
static
<T extends Event>
void
Executions.schedule(Desktop desktop, EventListener<T> task, T event)
          Schedules a task to run under the server push of the given desktop asynchronously.
 

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

Subinterfaces of EventListener in org.zkoss.zk.ui.event
 interface CloneableEventListener<T extends Event>
          A cloneable event listener that will be notified when an event occurs, if it is registered to Component.addEventListener(int, java.lang.String, org.zkoss.zk.ui.event.EventListener).
 interface SerializableEventListener<T extends Event>
          A serializable event listener that will be notified when an event occurs, if it is registered to Component.addEventListener(int, java.lang.String, org.zkoss.zk.ui.event.EventListener).
 

Classes in org.zkoss.zk.ui.event that implement EventListener
 class GenericEventListener<T extends Event>
          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<T> listener)
          Returns if an event listener is subscribed.
 void EventQueue.subscribe(EventListener<T> listener)
          Subscribes a listener to this queue.
 void EventQueue.subscribe(EventListener<T> listener, boolean async)
          Subscribes a synchronous or asynchronous listener to this event queue.
 void EventQueue.subscribe(EventListener<T> listener, EventListener<T> callback)
          Subscribes a synchronous or asynchronous listener to this event queue.
 void EventQueue.subscribe(EventListener<T> listener, EventListener<T> callback)
          Subscribes a synchronous or asynchronous listener to this event queue.
 boolean EventQueue.unsubscribe(EventListener<T> 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<T> listener)
           
 boolean DesktopEventQueue.isSubscribed(EventListener<T> listener)
           
 void ServerPushEventQueue.subscribe(EventListener<T> listener)
           
 void DesktopEventQueue.subscribe(EventListener<T> listener)
           
 void ServerPushEventQueue.subscribe(EventListener<T> listener, boolean async)
           
 void DesktopEventQueue.subscribe(EventListener<T> listener, boolean async)
           
 void ServerPushEventQueue.subscribe(EventListener<T> listener, EventListener<T> callback)
           
 void ServerPushEventQueue.subscribe(EventListener<T> listener, EventListener<T> callback)
           
 void DesktopEventQueue.subscribe(EventListener<T> listener, EventListener<T> callback)
           
 void DesktopEventQueue.subscribe(EventListener<T> listener, EventListener<T> callback)
           
 boolean ServerPushEventQueue.unsubscribe(EventListener<T> listener)
           
 boolean DesktopEventQueue.unsubscribe(EventListener<T> listener)
           
 

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

Methods in org.zkoss.zk.ui.impl that return types with arguments of type EventListener
 java.lang.Iterable<EventListener<? extends Event>> PageImpl.getEventListeners(java.lang.String evtnm)
           
 java.util.Iterator<EventListener<? extends Event>> PageImpl.getListenerIterator(java.lang.String evtnm)
          Deprecated. As of release 6.0, replaced with PageImpl.getEventListeners(java.lang.String).
 

Methods in org.zkoss.zk.ui.impl with parameters of type EventListener
 boolean PageImpl.addEventListener(java.lang.String evtnm, EventListener<? extends Event> listener)
           
 boolean PageImpl.removeEventListener(java.lang.String evtnm, EventListener<? extends Event> listener)
           
<T extends Event>
void
PollingServerPush.schedule(EventListener<T> listener, T event, Scheduler<T> scheduler)
           
<T extends Event>
void
DesktopImpl.scheduleServerPush(EventListener<T> listener, T event)
           
 

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

Classes in org.zkoss.zk.ui.select that implement EventListener
static class Selectors.ComposerEventListener
           
 

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

Methods in org.zkoss.zk.ui.sys that return EventListener
 EventListener<? extends Event> ExecutionInfo.getEventListener()
          Returns the listener that serves the event, or null if it is served by a method (ExecutionInfo.getEventMethod()), or a zscript (ExecutionInfo.getEventZScript()).
 

Methods in org.zkoss.zk.ui.sys with parameters of type EventListener
 void Scheduler.schedule(EventListener<T> task, T event)
          Schedules the task to execute asynchronously.
<T extends Event>
void
ServerPush.schedule(EventListener<T> task, T event, Scheduler<T> scheduler)
          Called by the associated desktop to schedule a task to execute asynchronously.
<T extends Event>
void
DesktopCtrl.scheduleServerPush(EventListener<T> task, T event)
          Schedules a task to run under the server push of the given desktop asynchronously.
 

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

Classes in org.zkoss.zk.ui.util that implement EventListener
 class GenericAutowireComposer<T extends Component>
          A skeletal 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.
 class GenericComposer<T extends Component>
          A skeletal 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<T extends Component>
          A skeletal 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.zkex.ui.comet
 

Methods in org.zkoss.zkex.ui.comet with parameters of type EventListener
<T extends Event>
void
CometServerPush.schedule(EventListener<T> listener, T event, Scheduler<T> scheduler)
           
 

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

Methods in org.zkoss.zkmax.ui.event.impl with parameters of type EventListener
 boolean GroupEventQueue.isSubscribed(EventListener<T> listener)
           
 void GroupEventQueue.subscribe(EventListener<T> listener)
           
 void GroupEventQueue.subscribe(EventListener<T> listener, boolean async)
           
 void GroupEventQueue.subscribe(EventListener<T> listener, EventListener<T> callback)
           
 void GroupEventQueue.subscribe(EventListener<T> listener, EventListener<T> callback)
           
 boolean GroupEventQueue.unsubscribe(EventListener<T> listener)
           
 

Uses of EventListener in org.zkoss.zkplus.acegi
 

Classes in org.zkoss.zkplus.acegi that implement EventListener
 class ShowWindowEventListener<T extends Event>
          Deprecated. As of release 7.0.0
 

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<? extends Event> listener)
           
static Media[] Fileupload.get(EventListener<UploadEvent> listener)
          Opens a modal dialog to upload multiple files with the default message and title.
static Media[] Fileupload.get(int max, EventListener<UploadEvent> listener)
          Opens a modal dialog to upload multiple files with the default message and title.
protected static Media[] Fileupload.get(java.util.Map<java.lang.String,java.lang.Object> params, java.lang.String message, java.lang.String title, int max, int maxsize, boolean alwaysNative, EventListener<UploadEvent> listener)
          Opens a modal dialog to upload multiple files with the specified message, title and options.
static int Messagebox.show(int messageCode, int titleCode, int buttons, java.lang.String icon, int focus, EventListener<Event> 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<Event> 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<Event> listener)
          Shows a message box by specifying a message code, and returns what button is pressed.
static Messagebox.Button Messagebox.show(java.lang.String message, Messagebox.Button[] buttons, EventListener<Messagebox.ClickEvent> 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, EventListener<Event> 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<Event> listener)
          Shows a message box and returns what button is pressed.
static Messagebox.Button Messagebox.show(java.lang.String message, java.lang.String title, Messagebox.Button[] buttons, java.lang.String[] btnLabels, java.lang.String icon, Messagebox.Button focus, EventListener<Messagebox.ClickEvent> listener)
          Shows a message box and returns what button is pressed.
static Messagebox.Button Messagebox.show(java.lang.String message, java.lang.String title, Messagebox.Button[] buttons, java.lang.String[] btnLabels, java.lang.String icon, Messagebox.Button focus, EventListener<Messagebox.ClickEvent> listener, java.util.Map<java.lang.String,java.lang.String> params)
          Shows a message box and returns what button is pressed.
static Messagebox.Button Messagebox.show(java.lang.String message, java.lang.String title, Messagebox.Button[] buttons, java.lang.String icon, EventListener<Messagebox.ClickEvent> listener)
          Shows a message box and returns what button is pressed.
static Messagebox.Button Messagebox.show(java.lang.String message, java.lang.String title, Messagebox.Button[] buttons, java.lang.String icon, Messagebox.Button focus, EventListener<Messagebox.ClickEvent> 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<? extends Event> listener)
          Adds an event listener to specified event for this component.
 boolean Paginal.removeEventListener(java.lang.String evtnm, EventListener<? extends Event> 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<Messagebox.ClickEvent> listener)
          Sets the event listener.
 void FileuploadDlg.setUploadListener(EventListener<UploadEvent> listener)
          Set the upload call back event listener
 



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