java.lang.Objectjava.util.EventObject
javax.faces.event.FacesEvent
javax.faces.event.ValueChangeEvent
All Implemented Interfaces:
Serializable
A ValueChangeEvent is a notification that the local value of the source component has been change as a result of user interface activity. It is not fired unless validation of the new value was completed successfully.
Fields inherited from java.util.EventObject: |
---|
source |
Constructor: |
---|
Construct a new event object from the specified source component, old value, and new value. The default PhaseId for this event is PhaseId#ANY_PHASE .
|
Method from javax.faces.event.ValueChangeEvent Summary: |
---|
getNewValue, getOldValue, isAppropriateListener, processListener |
Methods from javax.faces.event.FacesEvent: |
---|
getComponent, getPhaseId, isAppropriateListener, processListener, queue, setPhaseId |
Methods from java.util.EventObject: |
---|
getSource, toString |
Methods from java.lang.Object: |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method from javax.faces.event.ValueChangeEvent Detail: |
---|
Return the current local value of the source UIComponent . |
Return the previous local value of the source UIComponent . |
|
|