Uses of Class
org.zkoss.zk.ui.event.Event

Packages that use Event
org.zkoss.bind ZK Bind Library 
org.zkoss.bind.impl Core Implementation for ZK Bind 
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 Events of Components in ZK EE. 
org.zkoss.zkmax.ui.event.impl Implementation of EventQueueProvider. 
org.zkoss.zkmax.zul.event   
org.zkoss.zkplus.acegi Utilities to support Acegi Security System 
org.zkoss.zkplus.databind The DataBinder used for binding ZK UI component and the backend data bean. 
org.zkoss.zkplus.hibernate Utilities to support Hibernate
org.zkoss.zkplus.spring Utilities to support Spring Application Framework
org.zkoss.zkplus.util Utilities that can be applied to several situations. 
org.zkoss.zul ZUL component set that are used for HTML-based clients. 
org.zkoss.zul.event Events of ZUL Component Set. 
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 Event in org.zkoss.bind
 

Subclasses of Event in org.zkoss.bind
 class GlobalCommandEvent
          The global-command event
 class PropertyChangeEvent
          The property-change event
 

Methods in org.zkoss.bind that return Event
 Event BindContext.getTriggerEvent()
          Returns associated event that trigger the associated command; null if not involved.
 

Uses of Event in org.zkoss.bind.impl
 

Methods in org.zkoss.bind.impl that return Event
 Event BindContextImpl.getTriggerEvent()
           
 

Methods in org.zkoss.bind.impl that return types with arguments of type Event
protected  EventQueue<Event> BinderImpl.getEventQueue()
           
 

Methods in org.zkoss.bind.impl with parameters of type Event
 java.util.Map<java.lang.String,java.lang.Object> ImplicitObjectContributorImpl.contirbuteCommandObject(Binder binder, CommandBinding binding, Event event)
           
 java.util.Map<java.lang.String,java.lang.Object> ImplicitObjectContributor.contirbuteCommandObject(Binder binder, CommandBinding binding, Event event)
           
static BindContext BindContextUtil.newBindContext(Binder binder, Binding binding, boolean save, java.lang.String command, Component comp, Event event)
           
 

Constructors in org.zkoss.bind.impl with parameters of type Event
BindContextImpl(Binder binder, Binding binding, boolean save, java.lang.String command, Component comp, Event event)
           
 

Uses of Event in org.zkoss.zk.ui
 

Methods in org.zkoss.zk.ui with type parameters of type Event
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.
 

Methods in org.zkoss.zk.ui that return types with arguments of type Event
 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 Event
 void Execution.postEvent(Event evt)
          Queues an event to this execution.
 void Execution.postEvent(int priority, Component realTarget, Event evt)
          Queues the give event for the specified target to this execution.
 void Execution.postEvent(int priority, Event evt)
          Queues an event with the specified priority to this execution.
 void AbstractComponent.service(Event event, Scope scope)
           
 

Method parameters in org.zkoss.zk.ui with type arguments of type Event
 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)
           
 

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

Classes in org.zkoss.zk.ui.event with type parameters of type 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 EventListener<T extends Event>
          An 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 EventQueue<T extends Event>
          An event queue.
 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.
 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).
 

Subclasses of Event in org.zkoss.zk.ui.event
 class AfterSizeEvent
          Represents an event that resize a component and provides the new size of the component.
 class BookmarkEvent
          The bookmark update event used with onBookmarkChange to notify that user pressed BACK, FORWARD or others that causes the bookmark changed (but still in the same desktop).
 class CheckEvent
          Represents an event cause by user's check a state at the client.
 class ClientInfoEvent
          The onClientInfo event is used to notify the client's information, such as time zone and screen resolutions.
 class CreateEvent
          Used to notify a window that all its children are created and initialized.
 class DropEvent
          Represents an event cause by user's dragging and dropping a component.
 class ErrorEvent
          Represents an event cause by user's entering a wrong data or clearing the last wrong data.
 class ForwardEvent
          Represents the event forwarded by the forward condition.
 class FulfillEvent
          Represents the fulfill condition has been applied.
 class InputEvent
          Represents an event cause by user's input something at the client.
 class KeyEvent
          Represents a key pressed by the user.
 class MaximizeEvent
          Represents an event caused by a component being maximized.
 class MinimizeEvent
          Represents an event caused by a component being minimized.
 class MouseEvent
          Represents an event cause by mouse activity.
 class MoveEvent
          Represents an event caused by a component being moved.
 class OpenEvent
          Represents an event cause by user's opening or closing something at the client.
 class ScrollEvent
          Represents an event caused by that user is scrolling or has scrolled at the client.
 class SelectEvent<T extends Component,E>
          Represents an event cause by user's the list selection is changed at the client.
 class SelectionEvent
          Represents an event cause by user's the active selection which is a highlighted block of text.
 class SizeEvent
          Represents an event caused by a component being re-sized.
 class SortEvent
          Represents an event that indicates a sorting request to data.
 class StubEvent
          The event sent from a stub component (StubComponent.
 class SwipeEvent
          Represents an event that indicates swipe on a component and provides information about the swipe displacement, duration and direction.
 class UploadEvent
          Represents that user has uploaded one or several files from the client to the server.
 class URIEvent
          The URI update event used with onURIChange to notify that the associated URI is changed by the user.
 class VisibilityChangeEvent
          The VisibilityChangeEvent is used to notify current page/tab's visibility state.
 class ZIndexEvent
          Represents an event caused by a component whose z-index is modified by the client.
 

Methods in org.zkoss.zk.ui.event with type parameters of type Event
static
<T extends Event>
EventQueue<T>
EventQueues.lookup(java.lang.String name)
          Returns the desktop-level event queue with the specified name in the current desktop, or if no such event queue, create one.
static
<T extends Event>
EventQueue<T>
EventQueues.lookup(java.lang.String name, boolean autoCreate)
          Returns the desktop-level event queue with the specified name in the current desktop.
static
<T extends Event>
EventQueue<T>
EventQueues.lookup(java.lang.String name, Session sess, boolean autoCreate)
          Returns the event queue with the specified name in the give session (i.e., the session scope).
static
<T extends Event>
EventQueue<T>
EventQueues.lookup(java.lang.String name, java.lang.String scope, boolean autoCreate)
          Returns the event queue with the specified name in the specified scope.
static
<T extends Event>
EventQueue<T>
EventQueues.lookup(java.lang.String name, WebApp wapp, boolean autoCreate)
          Returns the event queue with the specified name in the give application (i.e., the application scope).
 

Methods in org.zkoss.zk.ui.event that return Event
static Event Event.getEvent(AuRequest request)
          Creates an instance of Event based on the specified request.
 Event FulfillEvent.getOrigin()
          Returns the original event.
 Event ForwardEvent.getOrigin()
          Returns the original event.
static Event Events.getRealOrigin(ForwardEvent event)
          Returns the real origin event of a forwarded event.
 

Methods in org.zkoss.zk.ui.event with parameters of type Event
 void EventThreadResume.abortResume(Component comp, Event evt)
          Called when the suspended event thread is aborted.
 void EventThreadResume.afterResume(Component comp, Event evt)
          Called after the suspended event thread is resumed.
 void EventThreadSuspend.afterSuspend(Component comp, Event evt)
          Called in the servlet thread after the event processing thread has been suspended.
 void EventThreadResume.beforeResume(Component comp, Event evt)
          Called just before the suspended event thread is resumed.
 void EventThreadSuspend.beforeSuspend(Component comp, Event evt, java.lang.Object obj)
          Called before the event processing thread is suspended.
 void EventThreadCleanup.cleanup(Component comp, Event evt, java.util.List<java.lang.Throwable> errs)
          Cleans up the event processing thread.
 void EventThreadCleanup.complete(Component comp, Event evt)
          Called in the serlvet thread to clean up.
static void Events.echoEvent(Event event)
          Echos an event.
 boolean EventThreadInit.init(Component comp, Event event)
          Initialize the event processing thread before processing the event.
 void GenericEventListener.onEvent(Event evt)
           
static void Events.postEvent(Component realTarget, Event event)
          Queues the give event for the specified target to this execution.
static void Events.postEvent(Event event)
          Posts an event to the current execution.
static void Events.postEvent(int priority, Component realTarget, Event event)
          Queues the give event for the specified target to this execution.
static void Events.postEvent(int priority, Event event)
          Posts an event to the current execution with the specified priority.
 void EventThreadInit.prepare(Component comp, Event event)
          Prepares the initialization at the servlet thread.
static void Events.sendEvent(Component comp, Event event)
          Sends the event to the specified component and process it immediately.
static void Events.sendEvent(Event event)
          Sends the event to the target specified in the event, and processes it immediately.
 

Constructors in org.zkoss.zk.ui.event with parameters of type Event
ForwardEvent(java.lang.String name, Component target, Event origin)
          Constructs a forward event.
ForwardEvent(java.lang.String name, Component target, Event origin, java.lang.Object data)
          Constructs a forward event.
FulfillEvent(java.lang.String name, Component target, Event origin)
          Constructs a fulfill event.
FulfillEvent(java.lang.String name, Component target, Event origin, java.lang.Object data)
          Constructs a fulfill event.
 

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

Classes in org.zkoss.zk.ui.event.impl with type parameters of type Event
 class DesktopEventQueue<T extends Event>
          The default implementation of the desktop-scoped event queue (EventQueue).
 class ServerPushEventQueue<T extends Event>
          The default implementation of the server-push based event queue (EventQueue).
 

Methods in org.zkoss.zk.ui.event.impl with type parameters of type Event
<T extends Event>
EventQueue<T>
EventQueueProviderImpl.lookup(java.lang.String name, Session sess, boolean autoCreate)
           
<T extends Event>
EventQueue<T>
EventQueueProvider.lookup(java.lang.String name, Session sess, boolean autoCreate)
          Returns the event queue with the specified name in the give session (i.e., the scope).
<T extends Event>
EventQueue<T>
EventQueueProviderImpl.lookup(java.lang.String name, java.lang.String scope, boolean autoCreate)
           
<T extends Event>
EventQueue<T>
EventQueueProvider.lookup(java.lang.String name, java.lang.String scope, boolean autoCreate)
          Returns the event queue with the specified name in the specified scope.
<T extends Event>
EventQueue<T>
EventQueueProviderImpl.lookup(java.lang.String name, WebApp wapp, boolean autoCreate)
           
<T extends Event>
EventQueue<T>
EventQueueProvider.lookup(java.lang.String name, WebApp wapp, boolean autoCreate)
          Returns the event queue with the specified name in the give application (i.e., the scope).
 

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

Subclasses of Event in org.zkoss.zk.ui.impl
 class ProxyEvent
          Used to proxy another event.
 

Methods in org.zkoss.zk.ui.impl with type parameters of type Event
<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)
           
 

Methods in org.zkoss.zk.ui.impl that return Event
 Event EventInterceptors.beforePostEvent(Event event)
          Invokes EventInterceptor.beforePostEvent(org.zkoss.zk.ui.event.Event)
 Event DesktopImpl.beforePostEvent(Event event)
           
 Event EventInterceptors.beforeProcessEvent(Event event)
          Invokes EventInterceptor.beforeProcessEvent(org.zkoss.zk.ui.event.Event)
 Event DesktopImpl.beforeProcessEvent(Event event)
           
 Event EventInterceptors.beforeSendEvent(Event event)
          Invokes EventInterceptor.beforeSendEvent(org.zkoss.zk.ui.event.Event)
 Event DesktopImpl.beforeSendEvent(Event event)
           
 Event EventProcessor.getEvent()
          Returns the event.
 Event EventProcessingThreadImpl.getEvent()
           
 Event AbstractExecution.getNextEvent()
           
 Event ProxyEvent.getProxiedEvent()
          Returns the proxied event.
 

Methods in org.zkoss.zk.ui.impl that return types with arguments of type Event
 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 Event
 void EventInterceptors.afterProcessEvent(Event event)
          Invokes EventInterceptor.afterProcessEvent(org.zkoss.zk.ui.event.Event)
 void DesktopImpl.afterProcessEvent(Event event)
           
 Event EventInterceptors.beforePostEvent(Event event)
          Invokes EventInterceptor.beforePostEvent(org.zkoss.zk.ui.event.Event)
 Event DesktopImpl.beforePostEvent(Event event)
           
 Event EventInterceptors.beforeProcessEvent(Event event)
          Invokes EventInterceptor.beforeProcessEvent(org.zkoss.zk.ui.event.Event)
 Event DesktopImpl.beforeProcessEvent(Event event)
           
 Event EventInterceptors.beforeSendEvent(Event event)
          Invokes EventInterceptor.beforeSendEvent(org.zkoss.zk.ui.event.Event)
 Event DesktopImpl.beforeSendEvent(Event event)
           
 void AbstractExecution.postEvent(Event evt)
           
 void AbstractExecution.postEvent(int priority, Component realTarget, Event evt)
           
 void AbstractExecution.postEvent(int priority, Event evt)
           
 boolean EventProcessingThreadImpl.processEvent(Desktop desktop, Component comp, Event event)
          Ask this event thread to process the specified event.
 void EventProcessingThreadImpl.sendEvent(Component comp, Event event)
           
 

Method parameters in org.zkoss.zk.ui.impl with type arguments of type Event
 boolean PageImpl.addEventListener(java.lang.String evtnm, EventListener<? extends Event> listener)
           
 boolean PageImpl.removeEventListener(java.lang.String evtnm, EventListener<? extends Event> listener)
           
 

Constructors in org.zkoss.zk.ui.impl with parameters of type Event
EventProcessor(Desktop desktop, Component comp, Event event)
           
ProxyEvent(Component realTarget, Event event)
          Constructor.
 

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

Methods in org.zkoss.zk.ui.select with parameters of type Event
 void Selectors.ComposerEventListener.onEvent(Event event)
           
 

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

Classes in org.zkoss.zk.ui.sys with type parameters of type Event
 interface Scheduler<T extends Event>
          A scheduler that is able to schedule a task to execute asynchronously.
 

Methods in org.zkoss.zk.ui.sys with type parameters of type Event
<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.
 

Methods in org.zkoss.zk.ui.sys that return Event
 Event DesktopCtrl.beforePostEvent(Event event)
          Invokes EventInterceptor.beforePostEvent(org.zkoss.zk.ui.event.Event) registered by Desktop.addListener(java.lang.Object).
 Event DesktopCtrl.beforeProcessEvent(Event event)
          Invokes EventInterceptor.beforeProcessEvent(org.zkoss.zk.ui.event.Event) registered by Desktop.addListener(java.lang.Object).
 Event DesktopCtrl.beforeSendEvent(Event event)
          Invokes EventInterceptor.beforeSendEvent(org.zkoss.zk.ui.event.Event) registered by Desktop.addListener(java.lang.Object).
 Event ExecutionInfo.getEvent()
          Returns the event being served (never null).
 Event EventProcessingThread.getEvent()
          Returns the event being processed by this thread, or null if idle.
 Event ExecutionCtrl.getNextEvent()
          Returns the next event queued by Execution.postEvent(org.zkoss.zk.ui.event.Event), or null if no event queued.
 

Methods in org.zkoss.zk.ui.sys that return types with arguments of type Event
 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 Event
 void DesktopCtrl.afterProcessEvent(Event event)
          Invokes EventInterceptor.afterProcessEvent(org.zkoss.zk.ui.event.Event) registered by Desktop.addListener(java.lang.Object).
 Event DesktopCtrl.beforePostEvent(Event event)
          Invokes EventInterceptor.beforePostEvent(org.zkoss.zk.ui.event.Event) registered by Desktop.addListener(java.lang.Object).
 Event DesktopCtrl.beforeProcessEvent(Event event)
          Invokes EventInterceptor.beforeProcessEvent(org.zkoss.zk.ui.event.Event) registered by Desktop.addListener(java.lang.Object).
 Event DesktopCtrl.beforeSendEvent(Event event)
          Invokes EventInterceptor.beforeSendEvent(org.zkoss.zk.ui.event.Event) registered by Desktop.addListener(java.lang.Object).
 void EventProcessingThread.sendEvent(Component comp, Event event)
          Sends the specified component and event and processes the event synchronously.
 void StubsComponent.service(Event event, Scope scope)
           
 void StubComponent.service(Event event, Scope scope)
           
 void ComponentCtrl.service(Event event, Scope scope)
          Handles an event.
 void EventListenerMap.service(Event event, Scope scope, Component comp, java.lang.String cmd)
          Services the event under the given page and scope.
 

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

Methods in org.zkoss.zk.ui.util that return Event
 Event EventInterceptor.beforePostEvent(Event event)
          Called before posting an event (with Events.postEvent(org.zkoss.zk.ui.event.Event)).
 Event Configuration.beforePostEvent(Event event)
          Invokes EventInterceptor.beforePostEvent(org.zkoss.zk.ui.event.Event) registered by Configuration.addListener(java.lang.Class) with a class implementing EventInterceptor.
 Event EventInterceptor.beforeProcessEvent(Event event)
          Called before processing an event.
 Event Configuration.beforeProcessEvent(Event event)
          Invokes EventInterceptor.beforeProcessEvent(org.zkoss.zk.ui.event.Event) registered by Configuration.addListener(java.lang.Class) with a class implementing EventInterceptor.
 Event EventInterceptor.beforeSendEvent(Event event)
          Called before sending an event (with Events.sendEvent(org.zkoss.zk.ui.Component, org.zkoss.zk.ui.event.Event)).
 Event Configuration.beforeSendEvent(Event event)
          Invokes EventInterceptor.beforeSendEvent(org.zkoss.zk.ui.event.Event) registered by Configuration.addListener(java.lang.Class) with a class implementing EventInterceptor.
 

Methods in org.zkoss.zk.ui.util with parameters of type Event
 void EventInterceptor.afterProcessEvent(Event event)
          Called after processing an event.
 void Configuration.afterProcessEvent(Event event)
          Invokes EventInterceptor.afterProcessEvent(org.zkoss.zk.ui.event.Event) registered by Configuration.addListener(java.lang.Class) with a class implementing EventInterceptor.
 Event EventInterceptor.beforePostEvent(Event event)
          Called before posting an event (with Events.postEvent(org.zkoss.zk.ui.event.Event)).
 Event Configuration.beforePostEvent(Event event)
          Invokes EventInterceptor.beforePostEvent(org.zkoss.zk.ui.event.Event) registered by Configuration.addListener(java.lang.Class) with a class implementing EventInterceptor.
 Event EventInterceptor.beforeProcessEvent(Event event)
          Called before processing an event.
 Event Configuration.beforeProcessEvent(Event event)
          Invokes EventInterceptor.beforeProcessEvent(org.zkoss.zk.ui.event.Event) registered by Configuration.addListener(java.lang.Class) with a class implementing EventInterceptor.
 Event EventInterceptor.beforeSendEvent(Event event)
          Called before sending an event (with Events.sendEvent(org.zkoss.zk.ui.Component, org.zkoss.zk.ui.event.Event)).
 Event Configuration.beforeSendEvent(Event event)
          Invokes EventInterceptor.beforeSendEvent(org.zkoss.zk.ui.event.Event) registered by Configuration.addListener(java.lang.Class) with a class implementing EventInterceptor.
 void ExecutionMonitor.eventComplete(Event event)
          Called when the processing of the given event completes.
 void ExecutionMonitor.eventResume(Event event)
          Called when the processing of the given event resumes.
 void ExecutionMonitor.eventStart(Event event)
          Called when the processing of the given event starts.
 void ExecutionMonitor.eventSuspend(Event event)
          Called when the processing of the given event suspends.
 void Configuration.invokeEventThreadCompletes(java.util.List<EventThreadCleanup> cleanups, Component comp, Event evt, java.util.List<java.lang.Throwable> errs, boolean silent)
          Invoke EventThreadCleanup.complete(org.zkoss.zk.ui.Component, org.zkoss.zk.ui.event.Event) for each instance returned by Configuration.newEventThreadCleanups(org.zkoss.zk.ui.Component, org.zkoss.zk.ui.event.Event, java.util.List, boolean).
 boolean Configuration.invokeEventThreadInits(java.util.List<EventThreadInit> inits, Component comp, Event evt)
          Invokes EventThreadInit.init(org.zkoss.zk.ui.Component, org.zkoss.zk.ui.event.Event) for each instance returned by Configuration.newEventThreadInits(org.zkoss.zk.ui.Component, org.zkoss.zk.ui.event.Event).
 void Configuration.invokeEventThreadResumeAborts(Component comp, Event evt)
          Invokes EventThreadResume.abortResume(org.zkoss.zk.ui.Component, org.zkoss.zk.ui.event.Event) for each relevant listener registered by Configuration.addListener(java.lang.Class).
 void Configuration.invokeEventThreadResumes(java.util.List<EventThreadResume> resumes, Component comp, Event evt)
          Invokes EventThreadResume.afterResume(org.zkoss.zk.ui.Component, org.zkoss.zk.ui.event.Event) for each instance returned by Configuration.newEventThreadResumes(org.zkoss.zk.ui.Component, org.zkoss.zk.ui.event.Event).
 void Configuration.invokeEventThreadSuspends(java.util.List<EventThreadSuspend> suspends, Component comp, Event evt)
          Invokes EventThreadSuspend.afterSuspend(org.zkoss.zk.ui.Component, org.zkoss.zk.ui.event.Event) for each relevant listener registered by Configuration.addListener(java.lang.Class).
 java.util.List<EventThreadCleanup> Configuration.newEventThreadCleanups(Component comp, Event evt, java.util.List<java.lang.Throwable> errs, boolean silent)
          Invokes EventThreadCleanup.cleanup(org.zkoss.zk.ui.Component, org.zkoss.zk.ui.event.Event, java.util.List) for each relevant listener registered by Configuration.addListener(java.lang.Class).
 java.util.List<EventThreadInit> Configuration.newEventThreadInits(Component comp, Event evt)
          Constructs a list of EventThreadInit instances and invokes EventThreadInit.prepare(org.zkoss.zk.ui.Component, org.zkoss.zk.ui.event.Event) for each relevant listener registered by Configuration.addListener(java.lang.Class).
 java.util.List<EventThreadResume> Configuration.newEventThreadResumes(Component comp, Event evt)
          Constructs a list of EventThreadResume instances and invokes EventThreadResume.beforeResume(org.zkoss.zk.ui.Component, org.zkoss.zk.ui.event.Event) for each relevant listener registered by Configuration.addListener(java.lang.Class).
 java.util.List<EventThreadSuspend> Configuration.newEventThreadSuspends(Component comp, Event evt, java.lang.Object obj)
          Constructs a list of EventThreadSuspend instances and invokes EventThreadSuspend.beforeSuspend(org.zkoss.zk.ui.Component, org.zkoss.zk.ui.event.Event, java.lang.Object) for each relevant listener registered by Configuration.addListener(java.lang.Class).
 

Uses of Event in org.zkoss.zkex.ui.comet
 

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

Uses of Event in org.zkoss.zkmax.ui.event
 

Subclasses of Event in org.zkoss.zkmax.ui.event
 class PortalMoveEvent
          Represents an event caused by a portal being moved.
 

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

Classes in org.zkoss.zkmax.ui.event.impl with type parameters of type Event
 class GroupEventQueue<T extends Event>
          The implementation of the group-scoped event queue.
 

Methods in org.zkoss.zkmax.ui.event.impl with type parameters of type Event
<T extends Event>
EventQueue<T>
EventQueueProviderImpl.lookup(java.lang.String name, java.lang.String scope, boolean autoCreate)
           
 

Uses of Event in org.zkoss.zkmax.zul.event
 

Subclasses of Event in org.zkoss.zkmax.zul.event
 class CellClickEvent
          Represents an event that indicates a clicking on a cell data for a matrix data component like Biglistbox, and provides more information about the row index and the column index.
 class ScrollEventExt
          Represents an event caused by that user is scrolling or has scrolled at the client for Biglistbox component and provides more information about the position X and Y data.
 class SortEventExt
          Represents an event that indicates a sorting request to data for Biglistbox, and provides more information about the column index.
 

Uses of Event in org.zkoss.zkplus.acegi
 

Classes in org.zkoss.zkplus.acegi with type parameters of type Event
 class ShowWindowEventListener<T extends Event>
          Deprecated. As of release 7.0.0
 

Methods in org.zkoss.zkplus.acegi with parameters of type Event
 void AcegiSecurityContextListener.abortResume(Component comp, Event evt)
          Deprecated.  
 void AcegiSecurityContextListener.afterResume(Component comp, Event evt)
          Deprecated.  
 void AcegiSecurityContextListener.beforeResume(Component comp, Event evt)
          Deprecated.  
 void AcegiSecurityContextListener.cleanup(Component comp, Event evt, java.util.List errs)
          Deprecated.  
 void AcegiSecurityContextListener.complete(Component comp, Event evt)
          Deprecated.  
 boolean AcegiSecurityContextListener.init(Component comp, Event evt)
          Deprecated.  
 void AcegiSecurityContextListener.prepare(Component comp, Event evt)
          Deprecated.  
 

Uses of Event in org.zkoss.zkplus.databind
 

Subclasses of Event in org.zkoss.zkplus.databind
 class BindingSaveEvent
          Deprecated. As of release 7.0.0, replace with new ZK binding.
 class BindingValidateEvent
          Deprecated. As of release 7.0.0, replace with new ZK binding.
 

Uses of Event in org.zkoss.zkplus.hibernate
 

Methods in org.zkoss.zkplus.hibernate with parameters of type Event
 void HibernateSessionContextListener.abortResume(Component comp, Event evt)
          Deprecated.  
 void HibernateSessionContextListener.afterResume(Component comp, Event evt)
          Deprecated.  
 void HibernateSessionContextListener.beforeResume(Component comp, Event evt)
          Deprecated.  
 boolean HibernateSessionContextListener.init(Component comp, Event evt)
          Deprecated.  
 void HibernateSessionContextListener.prepare(Component comp, Event evt)
          Deprecated.  
 

Uses of Event in org.zkoss.zkplus.spring
 

Methods in org.zkoss.zkplus.spring with parameters of type Event
 void SpringTransactionSynchronizationListener.abortResume(Component comp, Event evt)
           
 void SpringTransactionSynchronizationListener.afterResume(Component comp, Event evt)
           
 void SpringTransactionSynchronizationListener.beforeResume(Component comp, Event evt)
           
 void SpringTransactionSynchronizationListener.cleanup(Component comp, Event evt, java.util.List errs)
           
 void SpringTransactionSynchronizationListener.complete(Component comp, Event evt)
           
 boolean SpringTransactionSynchronizationListener.init(Component comp, Event evt)
           
 void SpringTransactionSynchronizationListener.prepare(Component comp, Event evt)
           
 

Uses of Event in org.zkoss.zkplus.util
 

Methods in org.zkoss.zkplus.util with parameters of type Event
 void ThreadLocalListener.abortResume(Component comp, Event evt)
           
 void ThreadLocalListener.afterResume(Component comp, Event evt)
           
 void ThreadLocalListener.beforeResume(Component comp, Event evt)
           
 void ThreadLocalListener.cleanup(Component comp, Event evt, java.util.List errs)
           
 void ThreadLocalListener.complete(Component comp, Event evt)
           
 boolean ThreadLocalListener.init(Component comp, Event evt)
           
 void ThreadLocalListener.prepare(Component comp, Event evt)
           
 

Uses of Event in org.zkoss.zul
 

Subclasses of Event in org.zkoss.zul
static class Messagebox.ClickEvent
          The event that will be received by the listener when the user clicks a button.
 

Methods in org.zkoss.zul with parameters of type Event
 void Tab.onCreate(Event evt)
          Internal use only
 void Radiogroup.onInitRender(Event data)
          For model rendering
 void Combobox.onInitRender(Event data)
          Handles a private event, onInitRender.
 

Method parameters in org.zkoss.zul with type arguments of type Event
 boolean Chart.addEventListener(java.lang.String evtnm, EventListener<? extends Event> listener)
           
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 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.
 

Uses of Event in org.zkoss.zul.event
 

Subclasses of Event in org.zkoss.zul.event
 class ColSizeEvent
          Used to notify that the width of a column is changed.
 class DataLoadingEvent
          Represent onDataLoading event.
 class PageSizeEvent
          Used to notify the paging size has been changed when the autopaging (MeshElement.setAutopaging(boolean)) is enabled and user changed the size of the content.
 class PagingEvent
          Used to notify that a new page is selected by the user, or by Paginal (such as Paging).
 class RenderEvent<T extends Component>
          Represents the onRender event.
 

Uses of Event in org.zkoss.zul.ext
 

Method parameters in org.zkoss.zul.ext with type arguments of type Event
 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 Event in org.zkoss.zul.impl
 

Methods in org.zkoss.zul.impl with parameters of type Event
 void FileuploadDlg.onClose(Event evt)
           
 



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