Package diva.canvas.event
Class LayerMotionAdapter
- java.lang.Object
-
- diva.canvas.event.LayerMotionAdapter
-
- All Implemented Interfaces:
LayerMotionListener
,java.util.EventListener
public class LayerMotionAdapter extends java.lang.Object implements LayerMotionListener
An adapter for layer motion listeners. The methods in this class are empty -- the class is provided to make it easier to produce anonymous LayerMotionListeners.- Version:
- $Id$
- Author:
- John Reekie
-
-
Constructor Summary
Constructors Constructor Description LayerMotionAdapter()
-
Method Summary
All Methods Instance Methods Concrete 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
public void mouseEntered(LayerEvent e)
Invoked when the mouse enters a layer or figure.- Specified by:
mouseEntered
in interfaceLayerMotionListener
- Parameters:
e
- The event
-
mouseExited
public void mouseExited(LayerEvent e)
Invoked when the mouse exits a layer or figure.- Specified by:
mouseExited
in interfaceLayerMotionListener
- Parameters:
e
- The event
-
mouseMoved
public void mouseMoved(LayerEvent e)
Invoked when the mouse moves while over a layer or figure.- Specified by:
mouseMoved
in interfaceLayerMotionListener
- Parameters:
e
- The event
-
-