Uses of Interface
javax.faces.event.ActionListener

Packages that use ActionListener
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. 
 

Uses of ActionListener in javax.faces.application
 

Methods in javax.faces.application that return ActionListener
abstract  ActionListener Application.getActionListener()
          Return the default ActionListener to be registered for all ActionSource components in this appication.
 ActionListener ApplicationWrapper.getActionListener()
          

The default behavior of this method is to call Application.getActionListener() on the wrapped Application object.

 ActionListener ApplicationWrapper.getActionListener()
          

The default behavior of this method is to call Application.getActionListener() on the wrapped Application object.

abstract  ActionListener Application.getActionListener()
          Return the default ActionListener to be registered for all ActionSource components in this appication.
 

Methods in javax.faces.application with parameters of type ActionListener
abstract  void Application.setActionListener(ActionListener listener)
          Set the default ActionListener to be registered for all ActionSource components.
 void ApplicationWrapper.setActionListener(ActionListener listener)
          

The default behavior of this method is to call Application.setActionListener(javax.faces.event.ActionListener) on the wrapped Application object.

 void ApplicationWrapper.setActionListener(ActionListener listener)
          

The default behavior of this method is to call Application.setActionListener(javax.faces.event.ActionListener) on the wrapped Application object.

abstract  void Application.setActionListener(ActionListener listener)
          Set the default ActionListener to be registered for all ActionSource components.
 

Uses of ActionListener in javax.faces.component
 

Classes in javax.faces.component that implement ActionListener
 class TestActionListener
          Test ActionListener implementation.
 class TestCommandActionListener
          Test implementation of ActionListener.
 class TestDataActionListener
          Test ActionListener implementation.
 

Methods in javax.faces.component that return ActionListener
 ActionListener[] ActionSource.getActionListeners()
          Return the set of registered ActionListeners for this ActionSource instance.
 ActionListener[] UICommand.getActionListeners()
           
 ActionListener[] UICommand.getActionListeners()
           
 ActionListener[] ActionSource.getActionListeners()
          Return the set of registered ActionListeners for this ActionSource instance.
 

Methods in javax.faces.component with parameters of type ActionListener
 void ActionSource.addActionListener(ActionListener listener)
          Add a new ActionListener to the set of listeners interested in being notified when ActionEvents occur.
 void UICommand.addActionListener(ActionListener listener)
           
 void UICommand.addActionListener(ActionListener listener)
           
 void ActionSource.addActionListener(ActionListener listener)
          Add a new ActionListener to the set of listeners interested in being notified when ActionEvents occur.
 void ActionSource.removeActionListener(ActionListener listener)
          Remove an existing ActionListener (if any) from the set of listeners interested in being notified when ActionEvents occur.
 void UICommand.removeActionListener(ActionListener listener)
           
 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 ActionEvents occur.
 

Uses of ActionListener in javax.faces.event
 

Classes in javax.faces.event that implement ActionListener
 class MethodExpressionActionListener
          MethodExpressionActionListener is an ActionListener that wraps a MethodExpression.
 



Copyright 2002-2011 Oracle America Inc, Inc. All Rights Reserved.