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
appication. |
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[] |
UICommand.getActionListeners() |
ActionListener[] |
ActionSource.getActionListeners()
Return the set of registered
ActionListener s for this
ActionSource instance. |
Modifier and Type | Method and Description |
---|---|
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 |
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 |
MethodExpressionActionListener
MethodExpressionActionListener is an
ActionListener that
wraps a MethodExpression . |
Copyright © 2012 JBoss by Red Hat. All Rights Reserved.