All Packages  Class Hierarchy  This Package  Previous  Next  Index

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

java.lang.Object
   |
   +----com.ibm.as400.ui.framework.java.EventHandler

public abstract class EventHandler
extends Object
The abstract base class for user-defined handler classes which handle events generated by the UI framework. The base class provides a valid reference to the PanelManager object for the panel that is generating the events.

See Also:
PanelManager

Variable Index

 o panelManager
The PanelManager instance which is managing the currently active panel.

Constructor Index

 o EventHandler(PanelManager)
Constructs an EventHandler.

Method Index

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

Variables

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

See Also:
PanelManager

Constructors

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

Parameters:
pm - the PanelManager for the currently active panel
See Also:
PanelManager

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