|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: REQUIRED | OPTIONAL | DETAIL: ELEMENT | |||||||||
@Retention(value=CLASS) @Target(value=TYPE) @Inherited public @interface Event
This annotation tells CDK to generate event-related classes:
| Required Element Summary | |
|---|---|
java.lang.Class<? extends javax.faces.event.FacesListener> |
listener
The listener interface class that process annotated event. |
| Optional Element Summary | |
|---|---|
java.lang.String |
listenerMethod
Name for the listener interface method that process annotated event type. |
java.lang.String |
source
Name of the interface class that fires annotated events and accepts its listeners. |
Tag[] |
tag
View Description Language, JSP or Facelets, tags for event listeners, eg <foo:barListener>. |
| Element Detail |
|---|
public abstract java.lang.Class<? extends javax.faces.event.FacesListener> listener
The listener interface class that process annotated event. This is mandatory parameter.
public abstract java.lang.String listenerMethod
Name for the listener interface method that process annotated event type.
public abstract java.lang.String source
Name of the interface class that fires annotated events and accepts its listeners.
public abstract Tag[] tag
View Description Language, JSP or Facelets, tags for event listeners, eg <foo:barListener>.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: REQUIRED | OPTIONAL | DETAIL: ELEMENT | |||||||||