Uses of Interface
java.awt.event.MouseMotionListener

Packages that use MouseMotionListener
java.awt Contains all of the classes for creating user interfaces and for painting graphics and images. 
java.awt.event Provides interfaces and classes for dealing with different types of events fired by AWT components. 
 

Uses of MouseMotionListener in java.awt
 

Classes in java.awt that implement MouseMotionListener
 class AWTEventMulticaster
          A class which implements efficient and thread-safe multi-cast event dispatching for the AWT events defined in the java.awt.event package.
 

Methods in java.awt that return MouseMotionListener
static MouseMotionListener AWTEventMulticaster.add(MouseMotionListener a, MouseMotionListener b)
          Adds mouse-motion-listener-a with mouse-motion-listener-b and returns the resulting multicast listener.
 MouseMotionListener[] Component.getMouseMotionListeners()
          Returns an array of all the mouse motion listeners registered on this component.
static MouseMotionListener AWTEventMulticaster.remove(MouseMotionListener l, MouseMotionListener oldl)
          Removes the old mouse-motion-listener from mouse-motion-listener-l and returns the resulting multicast listener.
 

Methods in java.awt with parameters of type MouseMotionListener
static MouseMotionListener AWTEventMulticaster.add(MouseMotionListener a, MouseMotionListener b)
          Adds mouse-motion-listener-a with mouse-motion-listener-b and returns the resulting multicast listener.
 void Component.addMouseMotionListener(MouseMotionListener l)
          Adds the specified mouse motion listener to receive mouse motion events from this component.
static MouseMotionListener AWTEventMulticaster.remove(MouseMotionListener l, MouseMotionListener oldl)
          Removes the old mouse-motion-listener from mouse-motion-listener-l and returns the resulting multicast listener.
 void Component.removeMouseMotionListener(MouseMotionListener l)
          Removes the specified mouse motion listener so that it no longer receives mouse motion events from this component.
 

Uses of MouseMotionListener in java.awt.event
 

Classes in java.awt.event that implement MouseMotionListener
 class MouseMotionAdapter
          An abstract adapter class for receiving mouse motion events.