javax.faces.event
abstract public class: BehaviorEvent [javadoc |
source]
java.lang.Object
java.util.EventObject
javax.faces.event.FacesEvent
javax.faces.event.BehaviorEvent
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
AjaxBehaviorEvent
BehaviorEvent is
the event that can be generated from component
javax.faces.component.behavior.Behavior .
Constructor: |
public BehaviorEvent(UIComponent component,
Behavior behavior) {
super(component);
if (null == behavior) {
throw new IllegalArgumentException("Behavior agrument cannot be null");
}
this.behavior = behavior;
}
Parameters:
component - Source UIComponent for this event
behavior - Behavior that sent this event
Throws:
IllegalArgumentException - if component or
behavior is null
- since:
2.0 -
|
Method from javax.faces.event.BehaviorEvent Summary: |
---|
getBehavior |
Methods from java.lang.Object: |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |