Package net.infonode.gui.hover
Interface HoverListener
-
- All Known Implementing Classes:
CompoundHoverListener,DelayedHoverExitAction,TabbedPanelHoverAction,TabbedPanelTitledTabHoverAction,TabWindowHoverAction,TitledTabDelayedMouseExitHoverAction,TitledTabHoverAction,TitledTabTabbedPanelHoverAction
public interface HoverListenerHoverListener 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 voidmouseEntered(HoverEvent event)Called when the mouse enters the hoverable componentvoidmouseExited(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
-
-