Package org.eclipse.draw2d
Interface MouseMotionListener
- All Known Implementing Classes:
- MouseMotionListener.Stub,- ScrollBar.ThumbDragger
public interface MouseMotionListener
A listener interface for receiving mouse motion events.
- 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic classAn empty implementation of MouseMotionListener for convenience.
- 
Method SummaryModifier and TypeMethodDescriptionvoidCalled when the mouse has moved over the listened to object while a button was pressed.voidCalled when the mouse has entered the listened to object.voidCalled when the mouse has exited the listened to object.voidmouseHover(MouseEvent me) Called when the mouse hovers over the listened to object.voidmouseMoved(MouseEvent me) Called when the mouse has moved over the listened to object.
- 
Method Details- 
mouseDraggedCalled when the mouse has moved over the listened to object while a button was pressed.- Parameters:
- me- The MouseEvent object
 
- 
mouseEnteredCalled when the mouse has entered the listened to object.- Parameters:
- me- The MouseEvent object
 
- 
mouseExitedCalled when the mouse has exited the listened to object.- Parameters:
- me- The MouseEvent object
 
- 
mouseHoverCalled when the mouse hovers over the listened to object.- Parameters:
- me- The MouseEvent object
 
- 
mouseMovedCalled when the mouse has moved over the listened to object.- Parameters:
- me- The MouseEvent object
 
 
-