Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.eclipse.swt.events
Interface MouseListener  view MouseListener download MouseListener.java

All Superinterfaces:
java.util.EventListener, org.eclipse.swt.internal.SWTEventListener
All Known Implementing Classes:
MouseAdapter

public interface MouseListener
extends org.eclipse.swt.internal.SWTEventListener

Classes which implement this interface provide methods that deal with the events that are generated as mouse buttons are pressed.

After creating an instance of a class that implements this interface it can be added to a control using the addMouseListener method and removed using the removeMouseListener method. When a mouse button is pressed or released, the appropriate method will be invoked.


Method Summary
 void mouseDoubleClick(MouseEvent e)
          Sent when a mouse button is pressed twice within the (operating system specified) double click period.
 void mouseDown(MouseEvent e)
          Sent when a mouse button is pressed.
 void mouseUp(MouseEvent e)
          Sent when a mouse button is released.
 

Method Detail

mouseDoubleClick

public void mouseDoubleClick(MouseEvent e)
Sent when a mouse button is pressed twice within the (operating system specified) double click period.


mouseDown

public void mouseDown(MouseEvent e)
Sent when a mouse button is pressed.


mouseUp

public void mouseUp(MouseEvent e)
Sent when a mouse button is released.