Use is subject to License Terms. Your use of this web site or any of its content or software indicates your agreement to be bound by these License Terms.

Copyright © 2006 Sun Microsystems, Inc. All rights reserved.

JSR 216 (Maintenance Release)

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
 MouseMotionListener[] Component.getMouseMotionListeners()
          Returns an array of all the mouse motion listeners registered on this component.
static MouseMotionListener AWTEventMulticaster.add(MouseMotionListener a, MouseMotionListener b)
          Adds mouse-motion-listener-a with mouse-motion-listener-b and returns the resulting multicast listener.
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
 void Component.addMouseMotionListener(MouseMotionListener l)
          Adds the specified mouse motion listener to receive mouse motion events from this component.
 void Component.removeMouseMotionListener(MouseMotionListener l)
          Removes the specified mouse motion listener so that it no longer receives mouse motion events from this component.
static MouseMotionListener AWTEventMulticaster.add(MouseMotionListener a, MouseMotionListener b)
          Adds mouse-motion-listener-a with mouse-motion-listener-b and returns the resulting multicast listener.
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.
 

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.
 


JSR 216 (Maintenance Release)

Copyright © 2006 Sun Microsystems, Inc. All rights reserved. Use is subject to License Terms. Your use of this web site or any of its content or software indicates your agreement to be bound by these License Terms.

For more information, please consult the JSR 216 specification.