public interface MouseMotionListener
Modifier and Type | Interface and Description |
---|---|
static class |
MouseMotionListener.Stub
An empty implementation of MouseMotionListener for convenience.
|
Modifier and Type | Method and Description |
---|---|
void |
mouseDragged(MouseEvent me)
Called when the mouse has moved over the listened to object while a
button was pressed.
|
void |
mouseEntered(MouseEvent me)
Called when the mouse has entered the listened to object.
|
void |
mouseExited(MouseEvent me)
Called when the mouse has exited the listened to object.
|
void |
mouseHover(MouseEvent me)
Called when the mouse hovers over the listened to object.
|
void |
mouseMoved(MouseEvent me)
Called when the mouse has moved over the listened to object.
|
void mouseDragged(MouseEvent me)
me
- The MouseEvent objectvoid mouseEntered(MouseEvent me)
me
- The MouseEvent objectvoid mouseExited(MouseEvent me)
me
- The MouseEvent objectvoid mouseHover(MouseEvent me)
me
- The MouseEvent objectvoid mouseMoved(MouseEvent me)
me
- The MouseEvent objectCopyright (c) IBM Corp. and others 2000, 2011. All Rights Reserved.