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
ConstructorDescriptionInstantiate a newPostRenderViewEvent
that indicates the argumentroot
has just been rendered.PostRenderViewEvent
(FacesContext facesContext, UIViewRoot root) Instantiate a newPostRenderViewEvent
that indicates the argumentroot
has just been rendered. -
Method Summary
Methods inherited from class javax.faces.event.ComponentSystemEvent
getComponent, isAppropriateListener, processListener
Methods inherited from class javax.faces.event.SystemEvent
getFacesContext
Methods inherited from class java.util.EventObject
getSource, toString
-
Constructor Details
-
PostRenderViewEvent
Instantiate a new
PostRenderViewEvent
that indicates the argumentroot
has just been rendered.- Parameters:
root
- theUIViewRoot
that has just been rendered.- Throws:
IllegalArgumentException
- if the argument isnull
.
-
PostRenderViewEvent
Instantiate a new
PostRenderViewEvent
that indicates the argumentroot
has just been rendered.- Parameters:
facesContext
- the Faces context.root
- theUIViewRoot
that has just been rendered.- Throws:
IllegalArgumentException
- if the argument isnull
.
-