The org.zkoss.zk.ui.util.EventInterceptor interface"

From Documentation
m
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
 
  {{ZKConfigurationReferencePageHeader}}
 
  {{ZKConfigurationReferencePageHeader}}
'''Property:'''
 
org.zkoss.zk.ui.util.EventInterceptor interface
 
  
<javadoc type="interface">org.zkoss.zk.ui.util.EventInterceptor</javadoc> is implemented by a listener class that will be used to intercept when an event is sent, posted and processed.
+
'''Listener:'''
 +
org.zkoss.zk.ui.util.EventInterceptor
 +
 
 +
A listener could implement <javadoc type="interface">org.zkoss.zk.ui.util.EventInterceptor</javadoc> to intercept when an event is sent, posted and processed.
  
 
Once registered, an instance is created and shared within the whole application. If you want to intercept events only for a particular desktop, use <javadoc method="addListener(java.lang.Object)">org.zkoss.zk.ui.Desktop</javadoc>.
 
Once registered, an instance is created and shared within the whole application. If you want to intercept events only for a particular desktop, use <javadoc method="addListener(java.lang.Object)">org.zkoss.zk.ui.Desktop</javadoc>.
  
{{ZKConfigurationReferencePageFooter}}
+
'''Instantiation:'''
 +
For better performance, a single instance of the given class is instantiated when registered. It is then shared in the whole application. Thus, the implementation must be thread safe.
 +
 
 +
{{ZKConfigurationReferencePageFooter}}

Latest revision as of 07:54, 21 April 2011


DocumentationZK Configuration Referencezk.xmlThe listener ElementThe org.zkoss.zk.ui.util.EventInterceptor interface
The org.zkoss.zk.ui.util.EventInterceptor interface


Listener:

org.zkoss.zk.ui.util.EventInterceptor

A listener could implement EventInterceptor to intercept when an event is sent, posted and processed.

Once registered, an instance is created and shared within the whole application. If you want to intercept events only for a particular desktop, use Desktop.addListener(Object).

Instantiation: For better performance, a single instance of the given class is instantiated when registered. It is then shared in the whole application. Thus, the implementation must be thread safe.



Last Update : 2011/04/21

Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License.