Draw2D v2.0

org.eclipse.draw2d
Class MouseMotionListener.Stub

java.lang.Object
  |
  +--org.eclipse.draw2d.MouseMotionListener.Stub
All Implemented Interfaces:
MouseMotionListener
Enclosing class:
MouseMotionListener

public static class MouseMotionListener.Stub
extends Object
implements MouseMotionListener


Inner classes inherited from class org.eclipse.draw2d.MouseMotionListener
MouseMotionListener.Stub
 
Constructor Summary
MouseMotionListener.Stub()
           
 
Method Summary
protected  void mouseDrag(MouseEvent me)
           
 void mouseDragged(MouseEvent me)
          Called when the mouse has moved over the listened to object while a button was pressed.
protected  void mouseEnter(MouseEvent me)
           
 void mouseEntered(MouseEvent me)
          Called when the mouse has entered the listened to object.
protected  void mouseExit(MouseEvent me)
           
 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.
protected  void mouseMove(MouseEvent me)
           
 void mouseMoved(MouseEvent me)
          Called when the mouse has moved over the listened to object.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

MouseMotionListener.Stub

public MouseMotionListener.Stub()
Method Detail

mouseDrag

protected final void mouseDrag(MouseEvent me)

mouseEnter

protected final void mouseEnter(MouseEvent me)

mouseExit

protected final void mouseExit(MouseEvent me)

mouseMove

protected final void mouseMove(MouseEvent me)

mouseDragged

public void mouseDragged(MouseEvent me)
Description copied from interface: MouseMotionListener
Called when the mouse has moved over the listened to object while a button was pressed.
Specified by:
mouseDragged in interface MouseMotionListener

mouseEntered

public void mouseEntered(MouseEvent me)
Description copied from interface: MouseMotionListener
Called when the mouse has entered the listened to object.
Specified by:
mouseEntered in interface MouseMotionListener

mouseExited

public void mouseExited(MouseEvent me)
Description copied from interface: MouseMotionListener
Called when the mouse has exited the listened to object.
Specified by:
mouseExited in interface MouseMotionListener

mouseMoved

public void mouseMoved(MouseEvent me)
Description copied from interface: MouseMotionListener
Called when the mouse has moved over the listened to object.
Specified by:
mouseMoved in interface MouseMotionListener

mouseHover

public void mouseHover(MouseEvent me)
Description copied from interface: MouseMotionListener
Called when the mouse hovers over the listened to object.
Specified by:
mouseHover in interface MouseMotionListener

Draw2D v2.0