javax.faces.event
public class: AjaxBehaviorEvent [javadoc |
source]
java.lang.Object
java.util.EventObject
javax.faces.event.FacesEvent
javax.faces.event.BehaviorEvent
javax.faces.event.AjaxBehaviorEvent
All Implemented Interfaces:
Serializable
AjaxBehaviorEvent
represents the component behavior specific to
Ajax
).
Methods from javax.faces.event.BehaviorEvent: |
---|
getBehavior |
Methods from java.lang.Object: |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method from javax.faces.event.AjaxBehaviorEvent Detail: |
public boolean isAppropriateListener(FacesListener listener) {
return (listener instanceof AjaxBehaviorListener);
}
Return true if this
FacesListener is an instance of a the appropriate
listener class that this event supports.
|
public void processListener(FacesListener listener) {
((AjaxBehaviorListener) listener).processAjaxBehavior(this);
}
Broadcast this event instance
to the specified FacesListener , by whatever mechanism
is appropriate. Typically, this will be accomplished by calling
an event processing method, and passing this instance as a
parameter.
|