Package diva.canvas.event
Interface LayerMotionListener
-
- All Superinterfaces:
java.util.EventListener
- All Known Subinterfaces:
Interactor
- All Known Implementing Classes:
AbstractInteractor
,ActionInteractor
,ActorEditorGraphController.LinkCreator
,ActorEditorGraphController.RelationCreator
,ArcInteractor
,BasicGraphController.NodeCreator
,BoundedDragInteractor
,CompositeInteractor
,ConnectorInteractor
,DragInteractor
,EdgeCreator
,EdgeInteractor
,FigureInteractor
,FSMGraphController.LinkCreator
,LayerEventMulticaster
,LayerMotionAdapter
,LayerMouseAdapter
,LocatableNodeDragInteractor
,MenuCreator
,NodeDragInteractor
,NodeInteractor
,SelectionDragger
,SelectionInteractor
,ViewScreen2D.ViewScreen2DListener
public interface LayerMotionListener extends java.util.EventListener
The interface for listeners that respond to motion of the mouse over a figure.- Version:
- $Id$
- Author:
- John Reekie
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
mouseEntered(LayerEvent e)
Invoked when the mouse enters a layer or figure.void
mouseExited(LayerEvent e)
Invoked when the mouse exits a layer or figure.void
mouseMoved(LayerEvent e)
Invoked when the mouse moves while over a layer or figure.
-
-
-
Method Detail
-
mouseEntered
void mouseEntered(LayerEvent e)
Invoked when the mouse enters a layer or figure.- Parameters:
e
- The event
-
mouseExited
void mouseExited(LayerEvent e)
Invoked when the mouse exits a layer or figure.- Parameters:
e
- The event
-
mouseMoved
void mouseMoved(LayerEvent e)
Invoked when the mouse moves while over a layer or figure.- Parameters:
e
- The event
-
-