Package javax.faces.event
Class PostConstructViewMapEvent
- java.lang.Object
-
- java.util.EventObject
-
- javax.faces.event.SystemEvent
-
- javax.faces.event.ComponentSystemEvent
-
- javax.faces.event.PostConstructViewMapEvent
-
- All Implemented Interfaces:
java.io.Serializable
public class PostConstructViewMapEvent extends ComponentSystemEvent
This event must be published by a call to {javax.faces.application.Application#publishEvent} when the view map is first created. This must happen on the first time a call is made to
UIViewRoot.getViewMap()on aUIViewRootinstance. The source for this event is theUIViewRoot.- Since:
- 2.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PostConstructViewMapEvent(UIViewRoot root)Instantiate a newPostConstructViewMapEventthat indicates the argumentrootwas just associated with its view map.
-
Method Summary
-
Methods inherited from class javax.faces.event.ComponentSystemEvent
getComponent, isAppropriateListener, processListener
-
-
-
-
Constructor Detail
-
PostConstructViewMapEvent
public PostConstructViewMapEvent(UIViewRoot root)
Instantiate a new
PostConstructViewMapEventthat indicates the argumentrootwas just associated with its view map.- Parameters:
root- theUIViewRootfor which a view map has just been created.
-
-