Uses of Interface
jakarta.faces.event.ActionListener
-
Packages that use ActionListener Package Description com.sun.faces.application com.sun.faces.application.applicationimpl jakarta.faces.application APIs that are used to link an application's business logic objects to Jakarta Faces, as well as convenient pluggable mechanisms to manage the execution of an application that is based on Jakarta Faces.jakarta.faces.component Fundamental APIs for user interface components.jakarta.faces.event Interfaces describing events and event listeners, and concrete event implementation classes. -
-
Uses of ActionListener in com.sun.faces.application
Classes in com.sun.faces.application that implement ActionListener Modifier and Type Class Description classActionListenerImplThis action listener implementation processes action events during the Apply Request Values or Invoke Application phase of the request processing lifecycle (depending upon theimmediateproperty of theActionSourcethat queued this event.Methods in com.sun.faces.application that return ActionListener Modifier and Type Method Description ActionListenerApplicationImpl. getActionListener()Methods in com.sun.faces.application with parameters of type ActionListener Modifier and Type Method Description voidApplicationImpl. setActionListener(ActionListener actionListener) -
Uses of ActionListener in com.sun.faces.application.applicationimpl
Methods in com.sun.faces.application.applicationimpl that return ActionListener Modifier and Type Method Description ActionListenerSingletons. getActionListener()Methods in com.sun.faces.application.applicationimpl with parameters of type ActionListener Modifier and Type Method Description voidSingletons. setActionListener(ActionListener actionListener) -
Uses of ActionListener in jakarta.faces.application
Methods in jakarta.faces.application that return ActionListener Modifier and Type Method Description abstract ActionListenerApplication. getActionListener()Return the defaultActionListenerto be registered for allActionSourcecomponents in this application.ActionListenerApplicationWrapper. getActionListener()The default behavior of this method is to callApplication.getActionListener()on the wrappedApplicationobject.Methods in jakarta.faces.application with parameters of type ActionListener Modifier and Type Method Description abstract voidApplication. setActionListener(ActionListener listener)Set the defaultActionListenerto be registered for allActionSourcecomponents.voidApplicationWrapper. setActionListener(ActionListener listener)The default behavior of this method is to callApplication.setActionListener(jakarta.faces.event.ActionListener)on the wrappedApplicationobject. -
Uses of ActionListener in jakarta.faces.component
Methods in jakarta.faces.component that return ActionListener Modifier and Type Method Description ActionListener[]ActionSource. getActionListeners()Return the set of registeredActionListeners for thisActionSourceinstance.ActionListener[]UICommand. getActionListeners()ActionListener[]UIViewAction. getActionListeners()Return the set of registeredActionListeners for thisActionSourceinstance.Methods in jakarta.faces.component with parameters of type ActionListener Modifier and Type Method Description voidActionSource. addActionListener(ActionListener listener)Add a newActionListenerto the set of listeners interested in being notified whenActionEvents occur.voidUICommand. addActionListener(ActionListener listener)voidUIViewAction. addActionListener(ActionListener listener)Add a newActionListenerto the set of listeners interested in being notified whenActionEvents occur.voidActionSource. removeActionListener(ActionListener listener)Remove an existingActionListener(if any) from the set of listeners interested in being notified whenActionEvents occur.voidUICommand. removeActionListener(ActionListener listener)voidUIViewAction. removeActionListener(ActionListener listener)Remove an existingActionListener(if any) from the set of listeners interested in being notified whenActionEvents occur. -
Uses of ActionListener in jakarta.faces.event
Classes in jakarta.faces.event that implement ActionListener Modifier and Type Class Description classActionListenerWrapperProvides a simple implementation ofActionListenerthat can be subclassed by developers wishing to provide specialized behavior to an existingActionListenerinstance.classMethodExpressionActionListenerMethods in jakarta.faces.event that return ActionListener Modifier and Type Method Description abstract ActionListenerActionListenerWrapper. getWrapped()
-