org.pietschy.command
Interface HoverListener

All Superinterfaces:
java.util.EventListener
All Known Implementing Classes:
DemoFrame

public interface HoverListener
extends java.util.EventListener

This interface provides notification of when the mouse have hovered over a Command. Listeners need to register will the CommandManager using CommandManager.addHoverListener(org.pietschy.command.HoverListener) to recieve events.

See Also:
HoverEvent, CommandManager.addHoverListener(org.pietschy.command.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 Detail

hoverStarted

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

Parameters:
e - a HoverEvent specifying the details.

hoverEnded

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

Parameters:
e - a HoverEvent specifying the details.