Uses of Interface
javax.faces.event.SystemEventListener

Packages that use SystemEventListener
javax.faces.application APIs that are used to link an application's business logic objects to JavaServer Faces, as well as convenient pluggable mechanisms to manage the execution of an application that is based on JavaServer Faces. 
javax.faces.component Fundamental APIs for user interface components. 
javax.faces.context Classes and interfaces defining per-request state information. 
javax.faces.event Interfaces describing events and event listeners, and concrete event implementation classes. 
 

Uses of SystemEventListener in javax.faces.application
 

Methods in javax.faces.application with parameters of type SystemEventListener
 void Application.subscribeToEvent(java.lang.Class<? extends SystemEvent> systemEventClass, java.lang.Class<?> sourceClass, SystemEventListener listener)
          

Install the listener instance referenced by argument listener into the application as a listener for events of type systemEventClass that originate from objects of type sourceClass.

 void ApplicationWrapper.subscribeToEvent(java.lang.Class<? extends SystemEvent> systemEventClass, java.lang.Class<?> sourceClass, SystemEventListener listener)
          

The default behavior of this method is to call Application.subscribeToEvent(Class, Class, javax.faces.event.SystemEventListener) on the wrapped Application object.

 void ApplicationWrapper.subscribeToEvent(java.lang.Class<? extends SystemEvent> systemEventClass, java.lang.Class<?> sourceClass, SystemEventListener listener)
          

The default behavior of this method is to call Application.subscribeToEvent(Class, Class, javax.faces.event.SystemEventListener) on the wrapped Application object.

 void Application.subscribeToEvent(java.lang.Class<? extends SystemEvent> systemEventClass, java.lang.Class<?> sourceClass, SystemEventListener listener)
          

Install the listener instance referenced by argument listener into the application as a listener for events of type systemEventClass that originate from objects of type sourceClass.

 void Application.subscribeToEvent(java.lang.Class<? extends SystemEvent> systemEventClass, SystemEventListener listener)
          

Install the listener instance referenced by argument listener into application as a listener for events of type systemEventClass.

 void ApplicationWrapper.subscribeToEvent(java.lang.Class<? extends SystemEvent> systemEventClass, SystemEventListener listener)
          

The default behavior of this method is to call Application.subscribeToEvent(Class, javax.faces.event.SystemEventListener) on the wrapped Application object.

 void ApplicationWrapper.subscribeToEvent(java.lang.Class<? extends SystemEvent> systemEventClass, SystemEventListener listener)
          

The default behavior of this method is to call Application.subscribeToEvent(Class, javax.faces.event.SystemEventListener) on the wrapped Application object.

 void Application.subscribeToEvent(java.lang.Class<? extends SystemEvent> systemEventClass, SystemEventListener listener)
          

Install the listener instance referenced by argument listener into application as a listener for events of type systemEventClass.

 void Application.unsubscribeFromEvent(java.lang.Class<? extends SystemEvent> systemEventClass, java.lang.Class<?> sourceClass, SystemEventListener listener)
          

Remove the listener instance referenced by argument listener from the application as a listener for events of type systemEventClass that originate from objects of type sourceClass.

 void ApplicationWrapper.unsubscribeFromEvent(java.lang.Class<? extends SystemEvent> systemEventClass, java.lang.Class<?> sourceClass, SystemEventListener listener)
          

The default behavior of this method is to call Application.unsubscribeFromEvent(Class, Class, javax.faces.event.SystemEventListener) on the wrapped Application object.

 void ApplicationWrapper.unsubscribeFromEvent(java.lang.Class<? extends SystemEvent> systemEventClass, java.lang.Class<?> sourceClass, SystemEventListener listener)
          

The default behavior of this method is to call Application.unsubscribeFromEvent(Class, Class, javax.faces.event.SystemEventListener) on the wrapped Application object.

 void Application.unsubscribeFromEvent(java.lang.Class<? extends SystemEvent> systemEventClass, java.lang.Class<?> sourceClass, SystemEventListener listener)
          

Remove the listener instance referenced by argument listener from the application as a listener for events of type systemEventClass that originate from objects of type sourceClass.

 void Application.unsubscribeFromEvent(java.lang.Class<? extends SystemEvent> systemEventClass, SystemEventListener listener)
          

Remove the listener instance referenced by argument listener from the application as a listener for events of type systemEventClass.

 void ApplicationWrapper.unsubscribeFromEvent(java.lang.Class<? extends SystemEvent> systemEventClass, SystemEventListener listener)
          

The default behavior of this method is to call Application.unsubscribeFromEvent(Class, javax.faces.event.SystemEventListener) on the wrapped Application object.

 void ApplicationWrapper.unsubscribeFromEvent(java.lang.Class<? extends SystemEvent> systemEventClass, SystemEventListener listener)
          

The default behavior of this method is to call Application.unsubscribeFromEvent(Class, javax.faces.event.SystemEventListener) on the wrapped Application object.

 void Application.unsubscribeFromEvent(java.lang.Class<? extends SystemEvent> systemEventClass, SystemEventListener listener)
          

Remove the listener instance referenced by argument listener from the application as a listener for events of type systemEventClass.

 

Uses of SystemEventListener in javax.faces.component
 

Classes in javax.faces.component that implement SystemEventListener
static class UIComponentBaseTestCase.Listener
           
static class UIComponentBaseTestCase.QueueingListener
           
 

Methods in javax.faces.component that return types with arguments of type SystemEventListener
 java.util.List<SystemEventListener> UIComponent.getListenersForEventClass(java.lang.Class<? extends SystemEvent> eventClass)
          

This implementation throws UnsupportedOperationException and is provided for the sole purpose of not breaking existing applications that extend this class.

 java.util.List<SystemEventListener> UIComponentBase.getListenersForEventClass(java.lang.Class<? extends SystemEvent> eventClass)
          

Return the SystemEventListener instances registered on this UIComponent instance that are interested in events of type eventClass.

 java.util.List<SystemEventListener> UIComponentBase.getListenersForEventClass(java.lang.Class<? extends SystemEvent> eventClass)
          

Return the SystemEventListener instances registered on this UIComponent instance that are interested in events of type eventClass.

 java.util.List<SystemEventListener> UIComponent.getListenersForEventClass(java.lang.Class<? extends SystemEvent> eventClass)
          

This implementation throws UnsupportedOperationException and is provided for the sole purpose of not breaking existing applications that extend this class.

 java.util.List<SystemEventListener> UIViewRoot.getViewListenersForEventClass(java.lang.Class<? extends SystemEvent> systemEvent)
          

Return the SystemEventListener instances registered on this UIComponent instance that are interested in events of type eventClass.

 java.util.List<SystemEventListener> UIViewRoot.getViewListenersForEventClass(java.lang.Class<? extends SystemEvent> systemEvent)
          

Return the SystemEventListener instances registered on this UIComponent instance that are interested in events of type eventClass.

 

Methods in javax.faces.component with parameters of type SystemEventListener
 void UIViewRoot.subscribeToViewEvent(java.lang.Class<? extends SystemEvent> systemEvent, SystemEventListener listener)
          

Install the listener instance referenced by argument listener into the UIViewRoot as a listener for events of type systemEventClass.

 void UIViewRoot.subscribeToViewEvent(java.lang.Class<? extends SystemEvent> systemEvent, SystemEventListener listener)
          

Install the listener instance referenced by argument listener into the UIViewRoot as a listener for events of type systemEventClass.

 void UIViewRoot.unsubscribeFromViewEvent(java.lang.Class<? extends SystemEvent> systemEvent, SystemEventListener listener)
          

Remove the listener instance referenced by argument listener from the UIViewRoot as a listener for events of type systemEventClass.

 void UIViewRoot.unsubscribeFromViewEvent(java.lang.Class<? extends SystemEvent> systemEvent, SystemEventListener listener)
          

Remove the listener instance referenced by argument listener from the UIViewRoot as a listener for events of type systemEventClass.

 

Uses of SystemEventListener in javax.faces.context
 

Classes in javax.faces.context that implement SystemEventListener
 class ExceptionHandler
          

ExceptionHandler is the central point for handling unexpected Exceptions that are thrown during the Faces lifecycle.

 class ExceptionHandlerWrapper
          Provides a simple implementation of ExceptionHandler that can be subclassed by developers wishing to provide specialized behavior to an existing ExceptionHandler instance.
 

Uses of SystemEventListener in javax.faces.event
 

Subinterfaces of SystemEventListener in javax.faces.event
 interface ViewMapListener
          

Marker interface for SystemEvents that indicate the view map has been created (PostConstructViewMapEvent, or destroyed (PreDestroyViewMapEvent).

 

Methods in javax.faces.event that return types with arguments of type SystemEventListener
 java.util.List<SystemEventListener> ExceptionQueuedEventContext.getListenersForEventClass(java.lang.Class<? extends SystemEvent> facesEventClass)
          

Return a List that contains a single entry, the ExceptionHandler for the current request.

 java.util.List<SystemEventListener> SystemEventListenerHolder.getListenersForEventClass(java.lang.Class<? extends SystemEvent> facesEventClass)
          
 java.util.List<SystemEventListener> SystemEventListenerHolder.getListenersForEventClass(java.lang.Class<? extends SystemEvent> facesEventClass)
          
 java.util.List<SystemEventListener> ExceptionQueuedEventContext.getListenersForEventClass(java.lang.Class<? extends SystemEvent> facesEventClass)
          

Return a List that contains a single entry, the ExceptionHandler for the current request.

 



Copyright 2002-2011 Oracle America Inc, Inc. All Rights Reserved.