Package org.apache.batik.gvt.event
Class SelectionAdapter
- java.lang.Object
-
- org.apache.batik.gvt.event.SelectionAdapter
-
- All Implemented Interfaces:
java.util.EventListener,SelectionListener
- Direct Known Subclasses:
JGVTComponent.UnixTextSelectionListener
public class SelectionAdapter extends java.lang.Object implements SelectionListener
Adapter for the listener interface for receiving selection events.- Version:
- $Id: SelectionAdapter.java 1808001 2017-09-11 09:51:29Z ssteiner $
-
-
Constructor Summary
Constructors Constructor Description SelectionAdapter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidselectionChanged(SelectionEvent evt)Invoked when a selection has changed.voidselectionCleared(SelectionEvent evt)Invoked when a selection is cleared.voidselectionDone(SelectionEvent evt)Invoked when a selection is done.voidselectionStarted(SelectionEvent evt)Invoked when a selection started.
-
-
-
Method Detail
-
selectionChanged
public void selectionChanged(SelectionEvent evt)
Invoked when a selection has changed.- Specified by:
selectionChangedin interfaceSelectionListener- Parameters:
evt- the selection change event
-
selectionDone
public void selectionDone(SelectionEvent evt)
Invoked when a selection is done.- Specified by:
selectionDonein interfaceSelectionListener- Parameters:
evt- the selection change event
-
selectionCleared
public void selectionCleared(SelectionEvent evt)
Invoked when a selection is cleared.- Specified by:
selectionClearedin interfaceSelectionListener- Parameters:
evt- the selection change event
-
selectionStarted
public void selectionStarted(SelectionEvent evt)
Invoked when a selection started.- Specified by:
selectionStartedin interfaceSelectionListener- Parameters:
evt- the selection change event
-
-