ibm.techexplorer.awt.event
Class MouseAdaptor
java.lang.Object
|
+--ibm.techexplorer.awt.event.MouseAdaptor
- All Implemented Interfaces:
- MouseListener
- public abstract class MouseAdaptor
- extends java.lang.Object
- implements MouseListener
Description
The MouseAdaptor
is a mouse listener with default implementations
for the methods imposed by the
ibm.techexplorer.awt.event.MouseListener
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
,
MouseEvent
,
MouseListener
Method Summary |
void |
mouseClicked(MouseEvent e)
Invoked when the mouse has been clicked on a techexplorer instance. |
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 |
mousePressed(MouseEvent e)
Invoked when a mouse button has been pressed on a techexplorer instance. |
void |
mouseReleased(MouseEvent e)
As of techexplorer 3.1, mouseRelease is replaced by mouseReleased
Invoked when a mouse button has been released on a techexplorer instance. |
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
MouseAdaptor
public MouseAdaptor()
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
mouseReleased
public void mouseReleased(MouseEvent e)
- As of techexplorer 3.1, mouseRelease is replaced by mouseReleased
Invoked when a mouse button has been released on a techexplorer instance.
- Specified by:
mouseReleased
in interface MouseListener