Uses of Interface
jakarta.faces.event.PhaseListener
-
Packages that use PhaseListener Package Description jakarta.faces.component jakarta.faces.lifecycle -
-
Uses of PhaseListener in jakarta.faces.component
Methods in jakarta.faces.component that return types with arguments of type PhaseListener Modifier and Type Method Description List<PhaseListener>UIViewRoot. getPhaseListeners()Return an unmodifiable list of thePhaseListenerinstances attached to thisUIViewRootinstance.Methods in jakarta.faces.component with parameters of type PhaseListener Modifier and Type Method Description voidUIViewRoot. addPhaseListener(PhaseListener newPhaseListener)voidUIViewRoot. removePhaseListener(PhaseListener toRemove)If the argumenttoRemoveis in the list ofPhaseListeners for this instance, it must be removed. -
Uses of PhaseListener in jakarta.faces.lifecycle
Methods in jakarta.faces.lifecycle that return PhaseListener Modifier and Type Method Description abstract PhaseListener[]Lifecycle. getPhaseListeners()Return the set of registeredPhaseListeners for thisLifecycleinstance.PhaseListener[]LifecycleWrapper. getPhaseListeners()Methods in jakarta.faces.lifecycle with parameters of type PhaseListener Modifier and Type Method Description abstract voidLifecycle. addPhaseListener(PhaseListener listener)Register a newPhaseListenerinstance that is interested in being notified before and after the processing for standard phases of the request processing lifecycle.voidLifecycleWrapper. addPhaseListener(PhaseListener listener)abstract voidLifecycle. removePhaseListener(PhaseListener listener)Deregister an existingPhaseListenerinstance that is no longer interested in being notified before and after the processing for standard phases of the request processing lifecycle.voidLifecycleWrapper. removePhaseListener(PhaseListener listener)
-