ibm.techexplorer.awt.event
Class FocusAdaptor

java.lang.Object
  |
  +--ibm.techexplorer.awt.event.FocusAdaptor

public abstract class FocusAdaptor
extends java.lang.Object
implements FocusListener

Description

The FocusAdaptor is a focus listener with default implementations for the methods imposed by the ibm.techexplorer.awt.event.FocusListener interface. The methods in this class are empty; this class is provided as a convenience for ease in creating listeners by extending this class and overriding only the methods of interest. Adaptor classes are frequently implemented as inner classes.

See Also:
AWTEvent, FocusEvent, FocusListener

Constructor Summary
FocusAdaptor()
           
 
Method Summary
 void focusGained(FocusEvent e)
          Invoked when a techexplorer instance gains the focus.
 void focusLost(FocusEvent e)
          Invoked when a techexplorer instance loses the focus.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

FocusAdaptor

public FocusAdaptor()
Method Detail

focusGained

public void focusGained(FocusEvent e)
Invoked when a techexplorer instance gains the focus.
Specified by:
focusGained in interface FocusListener

focusLost

public void focusLost(FocusEvent e)
Invoked when a techexplorer instance loses the focus.
Specified by:
focusLost in interface FocusListener