Draw2D v2.0

org.eclipse.draw2d
Interface MouseMotionListener

All Known Implementing Classes:
MouseMotionListener.Stub

public interface MouseMotionListener

A listener interface for receiving mouse motion events.


Inner Class Summary
static class MouseMotionListener.Stub
           
 
Method Summary
 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.
 

Method Detail

mouseDragged

public void mouseDragged(MouseEvent me)
Called when the mouse has moved over the listened to object while a button was pressed.

mouseEntered

public void mouseEntered(MouseEvent me)
Called when the mouse has entered the listened to object.

mouseExited

public void mouseExited(MouseEvent me)
Called when the mouse has exited the listened to object.

mouseHover

public void mouseHover(MouseEvent me)
Called when the mouse hovers over the listened to object.

mouseMoved

public void mouseMoved(MouseEvent me)
Called when the mouse has moved over the listened to object.

Draw2D v2.0