org.eclipse.draw2d
Interface MouseMotionListener
-
All Known Implementing Classes:
-
MouseMotionListener.Stub
- public interface MouseMotionListener
A listener interface for receiving mouse motion events.
Nested Class Summary
|
static class
|
MouseMotionListener.Stub
An empty implementation of MouseMotionListener for convenience. |
mouseDragged
public void mouseDragged(
MouseEvent me)
- Called when the mouse has moved over the listened to object while a button was pressed.
-
-
Parameters:
-
me
- The MouseEvent object
mouseEntered
public void mouseEntered(
MouseEvent me)
- Called when the mouse has entered the listened to object.
-
-
Parameters:
-
me
- The MouseEvent object
mouseExited
public void mouseExited(
MouseEvent me)
- Called when the mouse has exited the listened to object.
-
-
Parameters:
-
me
- The MouseEvent object
mouseHover
public void mouseHover(
MouseEvent me)
- Called when the mouse hovers over the listened to object.
-
-
Parameters:
-
me
- The MouseEvent object
mouseMoved
public void mouseMoved(
MouseEvent me)
- Called when the mouse has moved over the listened to object.
-
-
Parameters:
-
me
- The MouseEvent object
Copyright (c) IBM Corp. and others 2000, 2007. All Rights Reserved.