JSR-62 (Final)

Uses of Class
java.awt.event.MouseEvent

Packages that use MouseEvent
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 MouseEvent in java.awt
 

Methods in java.awt with parameters of type MouseEvent
protected  void Component.processMouseEvent(MouseEvent e)
          Processes mouse events occurring on this component by dispatching them to any registered MouseListener objects.
protected  void Component.processMouseMotionEvent(MouseEvent e)
          Processes mouse motion events occurring on this component by dispatching them to any registered MouseMotionListener objects.
 void AWTEventMulticaster.mouseClicked(MouseEvent e)
          Handles the mouseClicked event by invoking the mouseClicked methods on listener-a and listener-b.
 void AWTEventMulticaster.mousePressed(MouseEvent e)
          Handles the mousePressed event by invoking the mousePressed methods on listener-a and listener-b.
 void AWTEventMulticaster.mouseReleased(MouseEvent e)
          Handles the mouseReleased event by invoking the mouseReleased methods on listener-a and listener-b.
 void AWTEventMulticaster.mouseEntered(MouseEvent e)
          Handles the mouseEntered event by invoking the mouseEntered methods on listener-a and listener-b.
 void AWTEventMulticaster.mouseExited(MouseEvent e)
          Handles the mouseExited event by invoking the mouseExited methods on listener-a and listener-b.
 void AWTEventMulticaster.mouseDragged(MouseEvent e)
          Handles the mouseDragged event by invoking the mouseDragged methods on listener-a and listener-b.
 void AWTEventMulticaster.mouseMoved(MouseEvent e)
          Handles the mouseMoved event by invoking the mouseMoved methods on listener-a and listener-b.
 

Uses of MouseEvent in java.awt.event
 

Methods in java.awt.event with parameters of type MouseEvent
 void MouseMotionListener.mouseDragged(MouseEvent e)
          Invoked when a mouse button is pressed on a component and then dragged.
 void MouseMotionListener.mouseMoved(MouseEvent e)
          Invoked when the mouse button has been moved on a component (with no buttons no down).
 void MouseMotionAdapter.mouseDragged(MouseEvent e)
          Invoked when a mouse button is pressed on a component and then dragged.
 void MouseMotionAdapter.mouseMoved(MouseEvent e)
          Invoked when the mouse button has been moved on a component (with no buttons no down).
 void MouseAdapter.mouseClicked(MouseEvent e)
          Invoked when the mouse has been clicked on a component.
 void MouseAdapter.mousePressed(MouseEvent e)
          Invoked when a mouse button has been pressed on a component.
 void MouseAdapter.mouseReleased(MouseEvent e)
          Invoked when a mouse button has been released on a component.
 void MouseAdapter.mouseEntered(MouseEvent e)
          Invoked when the mouse enters a component.
 void MouseAdapter.mouseExited(MouseEvent e)
          Invoked when the mouse exits a component.
 void MouseListener.mouseClicked(MouseEvent e)
          Invoked when the mouse has been clicked on a component.
 void MouseListener.mousePressed(MouseEvent e)
          Invoked when a mouse button has been pressed on a component.
 void MouseListener.mouseReleased(MouseEvent e)
          Invoked when a mouse button has been released on a component.
 void MouseListener.mouseEntered(MouseEvent e)
          Invoked when the mouse enters a component.
 void MouseListener.mouseExited(MouseEvent e)
          Invoked when the mouse exits a component.
 


JSR-62 (Final)

Java and Java 2D are trademarks or registered trademarks of Sun Microsystems, Inc. in the U.S. and other countries.
Copyright 1993 - 2002 Sun Microsystems, Inc., 901 San Antonio Road, Palo Alto, California 94303, U.S.A. All Rights Reserved.
Use of this specification is subject to this license.