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 ActionListener
Application. getActionListener()
Return the defaultActionListener
to be registered for allActionSource
components in this application.ActionListener
ApplicationWrapper. getActionListener()
The default behavior of this method is to callApplication.getActionListener()
on the wrappedApplication
object.Methods in jakarta.faces.application with parameters of type ActionListener Modifier and Type Method Description abstract void
Application. setActionListener(ActionListener listener)
Set the defaultActionListener
to be registered for allActionSource
components.void
ApplicationWrapper. setActionListener(ActionListener listener)
The default behavior of this method is to callApplication.setActionListener(jakarta.faces.event.ActionListener)
on the wrappedApplication
object. -
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 registeredActionListener
s for thisActionSource
instance.ActionListener[]
UICommand. getActionListeners()
ActionListener[]
UIViewAction. getActionListeners()
Return the set of registeredActionListener
s for thisActionSource
instance.Methods in jakarta.faces.component with parameters of type ActionListener Modifier and Type Method Description void
ActionSource. addActionListener(ActionListener listener)
Add a newActionListener
to the set of listeners interested in being notified whenActionEvent
s occur.void
UICommand. addActionListener(ActionListener listener)
void
UIViewAction. addActionListener(ActionListener listener)
Add a newActionListener
to the set of listeners interested in being notified whenActionEvent
s occur.void
ActionSource. removeActionListener(ActionListener listener)
Remove an existingActionListener
(if any) from the set of listeners interested in being notified whenActionEvent
s occur.void
UICommand. removeActionListener(ActionListener listener)
void
UIViewAction. removeActionListener(ActionListener listener)
Remove an existingActionListener
(if any) from the set of listeners interested in being notified whenActionEvent
s occur. -
Uses of ActionListener in jakarta.faces.event
Classes in jakarta.faces.event that implement ActionListener Modifier and Type Class Description class
ActionListenerWrapper
Provides a simple implementation ofActionListener
that can be subclassed by developers wishing to provide specialized behavior to an existingActionListener
instance.class
MethodExpressionActionListener
Methods in jakarta.faces.event that return ActionListener Modifier and Type Method Description abstract ActionListener
ActionListenerWrapper. getWrapped()
-