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)
or
ComponentSystemEventListener.processEvent(jakarta.faces.event.ComponentSystemEvent)
, the listener implementation may assume that the
source
of this event instance is the UIComponent
instance that is about to be rendered and that
it is safe to call UIComponent.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
-
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
-
Constructor Details
-
PreRenderComponentEvent
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
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
.
-