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 classAWTEventMulticasterAWTEventMulticasterimplements efficient and thread-safe multi-cast event dispatching for the AWT events defined in thejava.awt.eventpackage.Methods in java.awt that return MouseMotionListener Modifier and Type Method and Description static MouseMotionListenerAWTEventMulticaster. 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 MouseMotionListenerAWTEventMulticaster. 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 MouseMotionListenerAWTEventMulticaster. add(MouseMotionListener a, MouseMotionListener b)Adds mouse-motion-listener-a with mouse-motion-listener-b and returns the resulting multicast listener.voidTrayIcon. addMouseMotionListener(MouseMotionListener listener)Adds the specified mouse listener to receive mouse-motion events from thisTrayIcon.voidComponent. addMouseMotionListener(MouseMotionListener l)Adds the specified mouse motion listener to receive mouse motion events from this component.static MouseMotionListenerAWTEventMulticaster. remove(MouseMotionListener l, MouseMotionListener oldl)Removes the old mouse-motion-listener from mouse-motion-listener-l and returns the resulting multicast listener.voidTrayIcon. removeMouseMotionListener(MouseMotionListener listener)Removes the specified mouse-motion listener.voidComponent. 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 classMouseAdapterAn abstract adapter class for receiving mouse events.classMouseMotionAdapterAn abstract adapter class for receiving mouse motion events.
-
