ibm.techexplorer.awt.event
Class MouseAdaptor
java.lang.Object
|
+--ibm.techexplorer.awt.event.MouseAdaptor
- 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
Methods inherited from class java.lang.Object |
clone,
equals,
finalize,
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
mouseRelease
public void mouseRelease(MouseEvent e)
- Invoked when a mouse button has been released on a techexplorer instance.
- Specified by:
- mouseRelease in interface MouseListener