Uses of Interface
javax.faces.event.PhaseListener

Packages that use PhaseListener
javax.faces.component Fundamental APIs for user interface components. 
javax.faces.lifecycle Classes and interfaces defining lifecycle management for the JavaServer Faces implementation. 
 

Uses of PhaseListener in javax.faces.component
 

Classes in javax.faces.component that implement PhaseListener
static class UIViewRootTestCase.PhaseListenerBean
           
 

Methods in javax.faces.component that return types with arguments of type PhaseListener
 java.util.List<PhaseListener> UIViewRoot.getPhaseListeners()
          

Return an unmodifiable list of the PhaseListener instances attached to this UIViewRoot instance.

 java.util.List<PhaseListener> UIViewRoot.getPhaseListeners()
          

Return an unmodifiable list of the PhaseListener instances attached to this UIViewRoot instance.

 

Methods in javax.faces.component with parameters of type PhaseListener
 void UIViewRoot.addPhaseListener(PhaseListener newPhaseListener)
          Add the argument newPhaseListener to the list of PhaseListeners on this UIViewRoot.
 void UIViewRoot.addPhaseListener(PhaseListener newPhaseListener)
          Add the argument newPhaseListener to the list of PhaseListeners on this UIViewRoot.
 void UIViewRoot.removePhaseListener(PhaseListener toRemove)
          If the argument toRemove is in the list of PhaseListeners for this instance, it must be removed.
 void UIViewRoot.removePhaseListener(PhaseListener toRemove)
          If the argument toRemove is in the list of PhaseListeners for this instance, it must be removed.
 

Uses of PhaseListener in javax.faces.lifecycle
 

Methods in javax.faces.lifecycle that return PhaseListener
abstract  PhaseListener[] Lifecycle.getPhaseListeners()
          Return the set of registered PhaseListeners for this Lifecycle instance.
abstract  PhaseListener[] Lifecycle.getPhaseListeners()
          Return the set of registered PhaseListeners for this Lifecycle instance.
 

Methods in javax.faces.lifecycle with parameters of type PhaseListener
abstract  void Lifecycle.addPhaseListener(PhaseListener listener)
          Register a new PhaseListener instance that is interested in being notified before and after the processing for standard phases of the request processing lifecycle.
abstract  void Lifecycle.addPhaseListener(PhaseListener listener)
          Register a new PhaseListener instance that is interested in being notified before and after the processing for standard phases of the request processing lifecycle.
abstract  void Lifecycle.removePhaseListener(PhaseListener listener)
          Deregister an existing PhaseListener instance that is no longer interested in being notified before and after the processing for standard phases of the request processing lifecycle.
abstract  void Lifecycle.removePhaseListener(PhaseListener listener)
          Deregister an existing PhaseListener instance that is no longer interested in being notified before and after the processing for standard phases of the request processing lifecycle.
 



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