org.zkoss.spring.context.annotation
Annotation Type EventHandler


@Retention(value=RUNTIME)
@Target(value=METHOD)
public @interface EventHandler

Used to annotate method as an event listener of the specified target ZK component and event name in the form of "abc.onXyz".

Author:
henrichen

Required Element Summary
 java.lang.String value
          Specifies the target ZK component and event name of the annotated listener method.
 

Element Detail

value

public abstract java.lang.String value
Specifies the target ZK component and event name of the annotated listener method.

Returns:
the ZK component and event name in the form of "abc.onXyz" where "abc" is the component id and "onXyz" is the event name.


Copyright © 2005-2007 Potix Corporation. All Rights Reserved.