Package javax.faces.event
Class SystemEvent
java.lang.Object
java.util.EventObject
javax.faces.event.SystemEvent
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ComponentSystemEvent,ExceptionQueuedEvent,PostConstructApplicationEvent,PostConstructCustomScopeEvent,PostKeepFlashValueEvent,PostPutFlashValueEvent,PreClearFlashEvent,PreDestroyApplicationEvent,PreDestroyCustomScopeEvent,PreRemoveFlashValueEvent
SystemEvent is the base class for non-application specific events that can be fired by arbitrary objects.
- Since:
- 2.0
- See Also:
-
Field Summary
Fields inherited from class java.util.EventObject
source -
Constructor Summary
ConstructorsConstructorDescriptionSystemEvent(Object source) Pass the argumentsourceto the superclass constructor. -
Method Summary
Modifier and TypeMethodDescriptionbooleanisAppropriateListener(FacesListener listener) Returntrueif thisFacesListeneris an instance of a the appropriate listener class that this event supports.voidprocessListener(FacesListener listener) Broadcast this event instance to the specifiedFacesListener, by whatever mechanism is appropriate.Methods inherited from class java.util.EventObject
getSource, toString
-
Constructor Details
-
SystemEvent
Pass the argument
sourceto the superclass constructor.- Parameters:
source- thesourcereference to be passed to the superclass constructor.
-
-
Method Details
-
isAppropriateListener
Return
trueif thisFacesListeneris an instance of a the appropriate listener class that this event supports. The default implementation returns true if the listener is aComponentSystemEventListener.- Parameters:
listener-FacesListenerto evaluate
-
processListener
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 paramter.- Parameters:
listener-FacesListenerto send thisFacesEventto- Throws:
AbortProcessingException- Signal the JavaServer Faces implementation that no further processing on the current event should be performed
-