Package javax.faces.event
Class PostRenderViewEvent
java.lang.Object
java.util.EventObject
javax.faces.event.SystemEvent
javax.faces.event.ComponentSystemEvent
javax.faces.event.PostRenderViewEvent
- All Implemented Interfaces:
Serializable
When an instance of this event is passed to
SystemEventListener.processEvent(javax.faces.event.SystemEvent) or
ComponentSystemEventListener.processEvent(javax.faces.event.ComponentSystemEvent), the listener
implementation may assume that the source of this event instance
is the UIViewRoot instance that has just been rendered.
- Since:
- 2.3
- See Also:
-
Field Summary
Fields inherited from class java.util.EventObject
source -
Constructor Summary
ConstructorsConstructorDescriptionInstantiate a newPostRenderViewEventthat indicates the argumentroothas just been rendered.PostRenderViewEvent(FacesContext facesContext, UIViewRoot root) Instantiate a newPostRenderViewEventthat indicates the argumentroothas just been rendered. -
Method Summary
Methods inherited from class javax.faces.event.ComponentSystemEvent
getComponent, isAppropriateListener, processListenerMethods inherited from class javax.faces.event.SystemEvent
getFacesContextMethods inherited from class java.util.EventObject
getSource, toString
-
Constructor Details
-
PostRenderViewEvent
Instantiate a new
PostRenderViewEventthat indicates the argumentroothas just been rendered.- Parameters:
root- theUIViewRootthat has just been rendered.- Throws:
IllegalArgumentException- if the argument isnull.
-
PostRenderViewEvent
Instantiate a new
PostRenderViewEventthat indicates the argumentroothas just been rendered.- Parameters:
facesContext- the Faces context.root- theUIViewRootthat has just been rendered.- Throws:
IllegalArgumentException- if the argument isnull.
-