All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface com.bulletproof.gui.event.MouseListener

public interface MouseListener
The listener interface for receiving mouse events on a component.


Method Index

 o mouseClicked(MouseEvent)
Invoked when the mouse has been clicked on a component.
 o mouseDoubleClicked(MouseEvent)
Invoked when the mouse has been clicked on a component.
 o mousePressed(MouseEvent)
Invoked when the mouse button has been pressed on a component.
 o mouseReleased(MouseEvent)
Invoked when the mouse button has been released on a component.

Methods

 o mousePressed
 public abstract void mousePressed(MouseEvent e)
Invoked when the mouse button has been pressed on a component.

 o mouseReleased
 public abstract void mouseReleased(MouseEvent e)
Invoked when the mouse button has been released on a component.

 o mouseClicked
 public abstract void mouseClicked(MouseEvent e)
Invoked when the mouse has been clicked on a component.

 o mouseDoubleClicked
 public abstract void mouseDoubleClicked(MouseEvent e)
Invoked when the mouse has been clicked on a component.


All Packages  Class Hierarchy  This Package  Previous  Next  Index