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.
-
mouseClicked(MouseEvent)
- Invoked when the mouse has been clicked on a component.
-
mouseDoubleClicked(MouseEvent)
- Invoked when the mouse has been clicked on a component.
-
mousePressed(MouseEvent)
- Invoked when the mouse button has been pressed on a component.
-
mouseReleased(MouseEvent)
- Invoked when the mouse button has been released on a component.
mousePressed
public abstract void mousePressed(MouseEvent e)
- Invoked when the mouse button has been pressed on a component.
mouseReleased
public abstract void mouseReleased(MouseEvent e)
- Invoked when the mouse button has been released on a component.
mouseClicked
public abstract void mouseClicked(MouseEvent e)
- Invoked when the mouse has been clicked on a component.
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