java.awt.event
public abstract class MouseAdapter extends Object implements MouseListener
MouseListener
and implements all methods
with empty bodies. This allows a listener interested in implementing only
a subset of the MouseListener
interface to extend this class
and override only the desired methods.
Since: 1.1
See Also: MouseEvent MouseListener
UNKNOWN: updated to 1.4
Constructor Summary | |
---|---|
MouseAdapter()
Do nothing default constructor for subclasses. |
Method Summary | |
---|---|
void | mouseClicked(MouseEvent event)
Implements this method in the interface with an empty method body.
|
void | mouseEntered(MouseEvent event)
Implements this method in the interface with an empty method body.
|
void | mouseExited(MouseEvent event)
Implements this method in the interface with an empty method body.
|
void | mousePressed(MouseEvent event)
Implements this method in the interface with an empty method body.
|
void | mouseReleased(MouseEvent event)
Implements this method in the interface with an empty method body.
|
Parameters: event the event, ignored in this implementation
Parameters: event the event, ignored in this implementation
Parameters: event the event, ignored in this implementation
Parameters: event the event, ignored in this implementation
Parameters: event the event, ignored in this implementation