Package javax.faces.event
Class PreDestroyViewMapEvent
- java.lang.Object
-
- java.util.EventObject
-
- javax.faces.event.SystemEvent
-
- javax.faces.event.ComponentSystemEvent
-
- javax.faces.event.PreDestroyViewMapEvent
-
- All Implemented Interfaces:
java.io.Serializable
public class PreDestroyViewMapEvent extends ComponentSystemEvent
This event must be published by a call to
Application.publishEvent(javax.faces.context.FacesContext, java.lang.Class<? extends javax.faces.event.SystemEvent>, java.lang.Object)when theclearmethod is called on the map returned fromUIViewRoot.getViewMap().- Since:
- 2.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PreDestroyViewMapEvent(UIViewRoot root)Instantiate a newViewMapDestroydEventthat indicates the argumentrootjust had its associated view map destroyed.
-
Method Summary
-
Methods inherited from class javax.faces.event.ComponentSystemEvent
getComponent, isAppropriateListener, processListener
-
-
-
-
Constructor Detail
-
PreDestroyViewMapEvent
public PreDestroyViewMapEvent(UIViewRoot root)
Instantiate a new
ViewMapDestroydEventthat indicates the argumentrootjust had its associated view map destroyed.- Parameters:
root- theUIViewRootfor which the view map has just been destroyed.
-
-