All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.ibm.as400.ui.framework.java.ActionHandler

java.lang.Object
   |
   +----javax.swing.AbstractAction
           |
           +----com.ibm.as400.ui.framework.java.ActionHandler

public abstract class ActionHandler
extends AbstractAction
The abstract base class for user-defined handler classes which handle menu events generated by the UI framework. The base class provides a valid reference to the MenuManager object for the menu that is generating the events.

See Also:
MenuManager

Variable Index

 o menuManager
The MenuManager instance which is managing the currently active menu.

Constructor Index

 o ActionHandler(MenuManager)
Constructs an ActionHandler.

Method Index

 o toString()
Returns a string representation of this object.

Variables

 o menuManager
 protected MenuManager menuManager
The MenuManager instance which is managing the currently active menu. This object will be called to handle events generated by this panel.

See Also:
MenuManager

Constructors

 o ActionHandler
 public ActionHandler(MenuManager mm)
Constructs an ActionHandler. Subclasses must override, as follows:
 public <handler_class_name>(MenuManager pm) { super(pm); }
 

Parameters:
pm - the MenuManager for the currently active menu
See Also:
MenuManager

Methods

 o toString
 public String toString()
Returns a string representation of this object.

Returns:
this object as a string
Overrides:
toString in class Object

All Packages  Class Hierarchy  This Package  Previous  Next  Index