Package kiyut.sketsa.canvas.event
Class CanvasSelectionAdapter
- java.lang.Object
-
- kiyut.sketsa.canvas.event.CanvasSelectionAdapter
-
- All Implemented Interfaces:
EventListener,CanvasSelectionListener
public class CanvasSelectionAdapter extends Object implements CanvasSelectionListener
The adapter which receives CanvasSelection events. The methods in this class are empty. This class is provided as a convenience for easily creating listeners by extending this class and overriding only the methods of interest.- Author:
- Kiyut
-
-
Constructor Summary
Constructors Constructor Description CanvasSelectionAdapter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidborderChanged(CanvasSelectionEvent evt)invoked whenever the selection border changes.voidvalueChanged(CanvasSelectionEvent evt)invoked whenever the value of the selection changes.
-
-
-
Method Detail
-
borderChanged
public void borderChanged(CanvasSelectionEvent evt)
invoked whenever the selection border changes.- Specified by:
borderChangedin interfaceCanvasSelectionListener- Parameters:
evt- CanvasSelectionEvent
-
valueChanged
public void valueChanged(CanvasSelectionEvent evt)
invoked whenever the value of the selection changes.- Specified by:
valueChangedin interfaceCanvasSelectionListener- Parameters:
evt- CanvasSelectionEvent
-
-