Package jakarta.faces.event
Class PreRenderComponentEvent
- java.lang.Object
-
- java.util.EventObject
-
- jakarta.faces.event.SystemEvent
-
- jakarta.faces.event.ComponentSystemEvent
-
- jakarta.faces.event.PreRenderComponentEvent
-
- All Implemented Interfaces:
Serializable
public class PreRenderComponentEvent extends ComponentSystemEvent
When an instance of this event is passed to
SystemEventListener.processEvent(jakarta.faces.event.SystemEvent)
orComponentSystemEventListener.processEvent(jakarta.faces.event.ComponentSystemEvent)
, the listener implementation may assume that thesource
of this event instance is theUIComponent
instance that is about to be rendered and that it is safe to callUIComponent.getParent()
,UIComponent.getClientId()
, and other methods that depend upon the component instance being in the view.- Since:
- 2.0
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class java.util.EventObject
source
-
-
Constructor Summary
Constructors Constructor Description PreRenderComponentEvent(UIComponent component)
Instantiate a newPreRenderComponentEvent
that indicates the argumentcomponent
is about to be rendered.PreRenderComponentEvent(FacesContext facesContext, UIComponent component)
Instantiate a newPreRenderComponentEvent
that indicates the argumentcomponent
is about to be rendered.
-
Method Summary
-
Methods inherited from class jakarta.faces.event.ComponentSystemEvent
getComponent, isAppropriateListener, processListener
-
Methods inherited from class jakarta.faces.event.SystemEvent
getFacesContext
-
Methods inherited from class java.util.EventObject
getSource, toString
-
-
-
-
Constructor Detail
-
PreRenderComponentEvent
public PreRenderComponentEvent(UIComponent component)
Instantiate a new
PreRenderComponentEvent
that indicates the argumentcomponent
is about to be rendered.- Parameters:
component
- theUIComponent
that is about to be rendered.- Throws:
IllegalArgumentException
- if the argument isnull
.
-
PreRenderComponentEvent
public PreRenderComponentEvent(FacesContext facesContext, UIComponent component)
Instantiate a new
PreRenderComponentEvent
that indicates the argumentcomponent
is about to be rendered.- Parameters:
facesContext
- the Faces context.component
- theUIComponent
that is about to be rendered.- Throws:
IllegalArgumentException
- if the argument isnull
.
-
-