Package javax.faces.event
Class PreRenderComponentEvent
- java.lang.Object
-
- java.util.EventObject
-
- javax.faces.event.SystemEvent
-
- javax.faces.event.ComponentSystemEvent
-
- javax.faces.event.PreRenderComponentEvent
-
- All Implemented Interfaces:
java.io.Serializable
public class PreRenderComponentEvent extends ComponentSystemEvent
When an instance of this event is passed to
SystemEventListener.processEvent(javax.faces.event.SystemEvent)orComponentSystemEventListener.processEvent(javax.faces.event.ComponentSystemEvent), the listener implementation may assume that thesourceof this event instance is theUIComponentinstance 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
-
-
Constructor Summary
Constructors Constructor Description PreRenderComponentEvent(UIComponent component)Instantiate a newPreRenderComponentEventthat indicates the argumentcomponentis about to be rendered.
-
Method Summary
-
Methods inherited from class javax.faces.event.ComponentSystemEvent
getComponent, isAppropriateListener, processListener
-
-
-
-
Constructor Detail
-
PreRenderComponentEvent
public PreRenderComponentEvent(UIComponent component)
Instantiate a new
PreRenderComponentEventthat indicates the argumentcomponentis about to be rendered.- Parameters:
component- theUIComponentthat is about to be rendered.
-
-