Uses of Interface
java.awt.event.MouseMotionListener
-
Packages that use MouseMotionListener Package Description 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 Modifier and Type Class and Description class
AWTEventMulticaster
AWTEventMulticaster
implements efficient and thread-safe multi-cast event dispatching for the AWT events defined in thejava.awt.event
package.Methods in java.awt that return MouseMotionListener Modifier and Type Method and Description 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[]
TrayIcon. getMouseMotionListeners()
Returns an array of all the mouse-motion listeners registered on thisTrayIcon
.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 Modifier and Type Method and Description 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
TrayIcon. addMouseMotionListener(MouseMotionListener listener)
Adds the specified mouse listener to receive mouse-motion events from thisTrayIcon
.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
TrayIcon. removeMouseMotionListener(MouseMotionListener listener)
Removes the specified mouse-motion 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 Modifier and Type Class and Description class
MouseAdapter
An abstract adapter class for receiving mouse events.class
MouseMotionAdapter
An abstract adapter class for receiving mouse motion events.
-