All Packages Class Hierarchy This Package Previous Next Index
Interface java.awt.event.MouseListener
- public interface MouseListener
- extends EventListener
The listener interface for receiving mouse events on a component.
-
mouseClicked(MouseEvent)
- Invoked when the mouse has been clicked on a component.
-
mouseEntered(MouseEvent)
- Invoked when the mouse enters a component.
-
mouseExited(MouseEvent)
- Invoked when the mouse exits a component.
-
mousePressed(MouseEvent)
- Invoked when a mouse button has been pressed on a component.
-
mouseReleased(MouseEvent)
- Invoked when a 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.
mousePressed
public abstract void mousePressed(MouseEvent e)
- Invoked when a mouse button has been pressed on a component.
mouseReleased
public abstract void mouseReleased(MouseEvent e)
- Invoked when a mouse button has been released on a component.
mouseEntered
public abstract void mouseEntered(MouseEvent e)
- Invoked when the mouse enters a component.
mouseExited
public abstract void mouseExited(MouseEvent e)
- Invoked when the mouse exits a component.
All Packages Class Hierarchy This Package Previous Next Index
Submit a bug or feature