Package io.guise.framework.event
Class MouseAdapter
- java.lang.Object
-
- io.guise.framework.event.MouseAdapter
-
- All Implemented Interfaces:
GuiseEventListener
,MouseListener
,java.util.EventListener
- Direct Known Subclasses:
AbstractComponent.AbstractFlyoverStrategy
public abstract class MouseAdapter extends java.lang.Object implements MouseListener
An abstract mouse listener providing default method implementations.- Author:
- Garret Wilson
-
-
Constructor Summary
Constructors Constructor Description MouseAdapter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
mouseClicked(MouseClickEvent mouseClickEvent)
Called when the mouse clicks the target.void
mouseEntered(MouseEnterEvent mouseEnterEvent)
Called when the mouse enters the target.void
mouseExited(MouseExitEvent mouseEnterEvent)
Called when the mouse exits the target.
-
-
-
Method Detail
-
mouseClicked
public void mouseClicked(MouseClickEvent mouseClickEvent)
Description copied from interface:MouseListener
Called when the mouse clicks the target.- Specified by:
mouseClicked
in interfaceMouseListener
- Parameters:
mouseClickEvent
- The event providing mouse information
-
mouseEntered
public void mouseEntered(MouseEnterEvent mouseEnterEvent)
Description copied from interface:MouseListener
Called when the mouse enters the target.- Specified by:
mouseEntered
in interfaceMouseListener
- Parameters:
mouseEnterEvent
- The event providing mouse information
-
mouseExited
public void mouseExited(MouseExitEvent mouseEnterEvent)
Description copied from interface:MouseListener
Called when the mouse exits the target.- Specified by:
mouseExited
in interfaceMouseListener
- Parameters:
mouseEnterEvent
- The event providing mouse information
-
-