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

Packages that use Event
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.sys Internal interfaces of user interfaces and factories (behind the scene). 
org.zkoss.zk.ui.util Utilities to handle user interfaces. 
org.zkoss.zkmax.ui.event Events of Components in ZK EE. 
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.impl Classes used to implement ZUL Component Set (implementation only). 
 

Uses of Event in org.zkoss.zk.ui
 

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, Event evt)
          Queues an event with the specified priority to this execution.
 

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

Subclasses of Event in org.zkoss.zk.ui.event
 class BookmarkEvent
          The bookmark udpate 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 activitly.
 class MoveEvent
          Represents an event caused by a component being moved.
 class OpenEvent
          Represents an event cause by user's openning 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
          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 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 assoicated URI is changed by the user.
 class ZIndexEvent
          Represents an event caused by a component whose z-index is modified by the client.
 

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 errs)
          Cleans up the event processing thread.
 void EventThreadCleanup.complete(Component comp, Event evt)
          Called in the serlvet thread to clean up.
 boolean EventThreadInit.init(Component comp, Event event)
          Initialize the event processing thread before processing the event.
 void GenericEventListener.onEvent(Event evt)
           
 void EventListener.onEvent(Event event)
          Notifies this listener that an event occurs.
static void Events.postEvent(Event event)
          Posts an event to the current 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.
 void EventQueue.publish(Event event)
          Publishes an event the queue.
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 the target specified in the event.
 

Constructors in org.zkoss.zk.ui.event with parameters of type Event
ForwardEvent(java.lang.String name, Component target, Event origin)
          Constructs a foward event.
ForwardEvent(java.lang.String name, Component target, Event origin, java.lang.Object data)
          Constructs a foward 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
 

Methods in org.zkoss.zk.ui.event.impl with parameters of type Event
 void ServerPushEventQueue.publish(Event event)
          Publishes an event.
 void DesktopEventQueue.publish(Event event)
           
 

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

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()
           
 

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, 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)
           
 

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

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

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 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 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.
 

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 Configuration.invokeEventThreadCompletes(java.util.List cleanups, Component comp, Event evt, java.util.List 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 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 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 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 Configuration.newEventThreadCleanups(Component comp, Event evt, java.util.List 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 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 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 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.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.zkplus.acegi
 

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

Uses of Event in org.zkoss.zkplus.databind
 

Subclasses of Event in org.zkoss.zkplus.databind
 class BindingSaveEvent
          Event used when DataBinder send "onBindingSave" events.
 

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)
           
 void HibernateSessionContextListener.afterResume(Component comp, Event evt)
           
 void HibernateSessionContextListener.beforeResume(Component comp, Event evt)
           
 boolean HibernateSessionContextListener.init(Component comp, Event evt)
           
 void HibernateSessionContextListener.prepare(Component comp, Event evt)
           
 

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
 

Methods in org.zkoss.zul with parameters of type Event
 void Radio.onCheck(Event event)
          Process the onCheck event sent when the radio is checked.
 void Combobox.onInitRender(Event data)
          Handles a private event, onInitRender.
 

Uses of Event in org.zkoss.zul.event
 

Subclasses of Event in org.zkoss.zul.event
 class ColSizeEvent
          Used to notify that the widths of two adjacent column are changed.
 class DataLoadingEvent
          Represent onDataLoading event.
 class PageSizeEvent
          Used to notify that the page size is changed (by the user), or by Paginal (such as Paging).
 class PagingEvent
          Used to notify that a new page is selected by the user, or by Paginal (such as Paging).
 class RenderEvent
          Represents the onRender event.
 

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-2009 Potix Corporation. All Rights Reserved. SourceForge.net Logo