Package | Description |
---|---|
javax.faces.application |
APIs that are used to link an application's
business logic objects to JavaServer Faces, as well as convenient
pluggable mechanisms to manage the execution of an application that is
based on JavaServer Faces.
|
javax.faces.component |
Fundamental APIs for user
interface components.
|
javax.faces.event |
Interfaces describing
events and event listeners, and concrete event implementation classes.
|
Modifier and Type | Method and Description |
---|---|
ActionListener |
ApplicationWrapper.getActionListener()
The default behavior of this method
is to call |
abstract ActionListener |
Application.getActionListener()
Return the default
ActionListener to be registered for
all ActionSource components in this
application. |
Modifier and Type | Method and Description |
---|---|
void |
ApplicationWrapper.setActionListener(ActionListener listener)
The default behavior of this method
is to call |
abstract void |
Application.setActionListener(ActionListener listener)
Set the default
ActionListener to be registered for all
ActionSource components. |
Modifier and Type | Method and Description |
---|---|
ActionListener[] |
UIViewAction.getActionListeners()
Return the set of registered
ActionListener s for this
ActionSource instance. |
ActionListener[] |
UICommand.getActionListeners() |
ActionListener[] |
ActionSource.getActionListeners()
Return the set of registered
ActionListener s for this
ActionSource instance. |
Modifier and Type | Method and Description |
---|---|
void |
UIViewAction.addActionListener(ActionListener listener)
Add a new
ActionListener to the set of listeners interested
in being notified when ActionEvent s occur. |
void |
UICommand.addActionListener(ActionListener listener) |
void |
ActionSource.addActionListener(ActionListener listener)
Add a new
ActionListener to the set of listeners interested
in being notified when ActionEvent s occur. |
void |
UIViewAction.removeActionListener(ActionListener listener)
Remove an existing
ActionListener (if any) from the set of
listeners interested in being notified when ActionEvent s
occur. |
void |
UICommand.removeActionListener(ActionListener listener) |
void |
ActionSource.removeActionListener(ActionListener listener)
Remove an existing
ActionListener (if any) from the set of
listeners interested in being notified when ActionEvent s
occur. |
Modifier and Type | Class and Description |
---|---|
class |
ActionListenerWrapper
Provides a simple implementation of
|
class |
MethodExpressionActionListener
|
Modifier and Type | Method and Description |
---|---|
abstract ActionListener |
ActionListenerWrapper.getWrapped() |
Copyright © 1996-2013, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.