Package net.infonode.gui.hover
Interface HoverListener
-
- All Known Implementing Classes:
CompoundHoverListener
,DelayedHoverExitAction
,TabbedPanelHoverAction
,TabbedPanelTitledTabHoverAction
,TabWindowHoverAction
,TitledTabDelayedMouseExitHoverAction
,TitledTabHoverAction
,TitledTabTabbedPanelHoverAction
public interface HoverListener
HoverListener interface for receiving events when a hoverable component is hovered by the mouse.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
mouseEntered(HoverEvent event)
Called when the mouse enters the hoverable componentvoid
mouseExited(HoverEvent event)
Called when the mouse exits the hoverable component
-
-
-
Method Detail
-
mouseEntered
void mouseEntered(HoverEvent event)
Called when the mouse enters the hoverable component- Parameters:
event
- the hover event
-
mouseExited
void mouseExited(HoverEvent event)
Called when the mouse exits the hoverable component- Parameters:
event
- the hover event
-
-