java.awt.event
public interface MouseListener extends EventListener
Since: 1.1
See Also: MouseAdapter MouseEvent
UNKNOWN: updated to 1.4
| Method Summary | |
|---|---|
| void | mouseClicked(MouseEvent event)
This method is called when the mouse is clicked (pressed and released
in short succession) on a component.
|
| void | mouseEntered(MouseEvent event)
This method is called when the mouse enters a component.
|
| void | mouseExited(MouseEvent event)
This method is called when the mouse exits a component.
|
| void | mousePressed(MouseEvent event)
This method is called when the mouse is pressed over a component.
|
| void | mouseReleased(MouseEvent event)
This method is called when the mouse is released over a component.
|
Parameters: event the MouseEvent indicating the click
Parameters: event the MouseEvent for the entry
Parameters: event the MouseEvent for the exit
Parameters: event the MouseEvent for the press
Parameters: event the MouseEvent for the release