ibm.techexplorer.event
Class techexplorerAdaptor

java.lang.Object
  |
  +--ibm.techexplorer.event.techexplorerAdaptor

public abstract class techexplorerAdaptor
extends java.lang.Object
implements InstanceListener, MouseListener, MouseMotionListener, KeyListener, FocusListener

Description

The techexplorerAdaptor is a techexplorer instance listener with default implementations for the methods imposed by the ibm.techexplorer.techexplorerListener 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:
InstanceListener, MouseListener, MouseMotionListener, KeyListener, FocusListener

Constructor Summary
techexplorerAdaptor()
           
 
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.
 void instanceDelete(InstanceEvent e)
          Invoked when the techexplorer plug-in is going to shutdown..
 void keyPressed(KeyEvent e)
          Invoked when a key has been pressed.
 void keyReleased(KeyEvent e)
          Invoked when a key has been released.
 void keyTyped(KeyEvent e)
          Invoked when a combination of a key press followed by a key release generated a character.
 void mouseClicked(MouseEvent e)
          Invoked when the mouse has been clicked on a techexplorer instance.
 void mouseDragged(MouseEvent e)
          Invoked when a mouse button is pressed on a techexplorer instance and then dragged.
 void mouseEntered(MouseEvent e)
          Invoked when the mouse enters a techexplorer instance.
 void mouseExited(MouseEvent e)
          Invoked when the mouse exits a techexplorerr instance.
 void mouseMoved(MouseEvent e)
          Invoked when the mouse button has been moved on a techexplorer instance (with no buttons no down).
 void mousePressed(MouseEvent e)
          Invoked when a mouse button has been pressed on a techexplorer instance.
 void mouseRelease(MouseEvent e)
          Invoked when a mouse button has been released on a techexplorer instance.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

techexplorerAdaptor

public techexplorerAdaptor()
Method Detail

instanceDelete

public void instanceDelete(InstanceEvent e)
Invoked when the techexplorer plug-in is going to shutdown..
Specified by:
instanceDelete in interface InstanceListener

mouseClicked

public void mouseClicked(MouseEvent e)
Invoked when the mouse has been clicked on a techexplorer instance.
Specified by:
mouseClicked in interface MouseListener

mouseEntered

public void mouseEntered(MouseEvent e)
Invoked when the mouse enters a techexplorer instance.
Specified by:
mouseEntered in interface MouseListener

mouseExited

public void mouseExited(MouseEvent e)
Invoked when the mouse exits a techexplorerr instance.
Specified by:
mouseExited in interface MouseListener

mousePressed

public void mousePressed(MouseEvent e)
Invoked when a mouse button has been pressed on a techexplorer instance.
Specified by:
mousePressed in interface MouseListener

mouseRelease

public void mouseRelease(MouseEvent e)
Invoked when a mouse button has been released on a techexplorer instance.
Specified by:
mouseRelease in interface MouseListener

mouseDragged

public void mouseDragged(MouseEvent e)
Invoked when a mouse button is pressed on a techexplorer instance and then dragged.
Specified by:
mouseDragged in interface MouseMotionListener

mouseMoved

public void mouseMoved(MouseEvent e)
Invoked when the mouse button has been moved on a techexplorer instance (with no buttons no down).
Specified by:
mouseMoved in interface MouseMotionListener

keyPressed

public void keyPressed(KeyEvent e)
Invoked when a key has been pressed.
Specified by:
keyPressed in interface KeyListener

keyReleased

public void keyReleased(KeyEvent e)
Invoked when a key has been released.
Specified by:
keyReleased in interface KeyListener

keyTyped

public void keyTyped(KeyEvent e)
Invoked when a combination of a key press followed by a key release generated a character.
Specified by:
keyTyped in interface KeyListener

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