Uses of Interface
jakarta.faces.event.ActionListener
-
Packages that use ActionListener Package Description jakarta.faces.application jakarta.faces.component jakarta.faces.event -
-
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()
-