API Overview API Index Package Overview Direct link to this page
JDK 1.6
  javax.swing.event. MouseInputAdapter View Source
Author(s)
Philip Milne
Shannon Hickey
Since
Version
1.14 06/12/06
Serial
Hierarchy
 Object
      MouseAdapter
          MouseInputAdapter
Implements
 MouseInputListener
Subclasses
Description
publicabstract abstract class MouseInputAdapter
  An empty implementation of the MouseInputListener interface, provided as a convenience to simplify the task of creating listeners, by extending and implementing only the methods of interest.
See also:   
Constructors
public MouseInputAdapter ()
Methods
Hide/Show inherited methods
public void mouseClicked (MouseEvent e) [Inherited From MouseAdapter]
Invoked when the mouse button has been clicked (pressed and released) on a component.
public void mouseDragged (MouseEvent e) [Inherited From MouseAdapter]
  Invoked when a mouse button is pressed on a component and then dragged.
public void mouseEntered (MouseEvent e) [Inherited From MouseAdapter]
Invoked when the mouse enters a component.
public void mouseExited (MouseEvent e) [Inherited From MouseAdapter]
Invoked when the mouse exits a component.
public void mouseMoved (MouseEvent e) [Inherited From MouseAdapter]
  Invoked when the mouse cursor has been moved onto a component but no buttons have been pushed.
public void mousePressed (MouseEvent e) [Inherited From MouseAdapter]
Invoked when a mouse button has been pressed on a component.
public void mouseReleased (MouseEvent e) [Inherited From MouseAdapter]
Invoked when a mouse button has been released on a component.
public void mouseWheelMoved (MouseWheelEvent e) [Inherited From MouseAdapter]
  Invoked when the mouse wheel is rotated.
Fields
Hide/Show inherited fields
Nested Classes
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar