org.pietschy.command

Interface HoverListener

All Superinterfaces:
EventListener
Known Implementing Classes:
DemoFrame

public interface HoverListener
extends EventListener

This interface provides notification of when the mouse have hovered over a Command. Listeners need to register will the CommandManager using CommandManager.addHoverListener(HoverListener) to recieve events.
See Also:
HoverEvent, CommandManager.addHoverListener(HoverListener)

Method Summary

void
hoverEnded(HoverEvent e)
Notification that the mouse has moved off a command.
void
hoverStarted(HoverEvent e)
Notification that the mouse has moved over a command.

Method Details

hoverEnded

public void hoverEnded(HoverEvent e)
Notification that the mouse has moved off a command.
Parameters:
e - a HoverEvent specifying the details.

hoverStarted

public void hoverStarted(HoverEvent e)
Notification that the mouse has moved over a command.
Parameters:
e - a HoverEvent specifying the details.