Package org.apache.batik.gvt.event
Interface SelectionListener
-
- All Superinterfaces:
java.util.EventListener
- All Known Implementing Classes:
JGVTComponent.UnixTextSelectionListener,SelectionAdapter,TextSelectionManager.TextSelectionListener
public interface SelectionListener extends java.util.EventListenerThe listener interface for receiving selection events.- Version:
- $Id: SelectionListener.java 1808001 2017-09-11 09:51:29Z ssteiner $
-
-
Method Summary
All Methods Instance Methods Abstract 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
void selectionChanged(SelectionEvent evt)
Invoked when a selection has changed.- Parameters:
evt- the selection change event
-
selectionDone
void selectionDone(SelectionEvent evt)
Invoked when a selection is done.- Parameters:
evt- the selection change event
-
selectionCleared
void selectionCleared(SelectionEvent evt)
Invoked when a selection is cleared.- Parameters:
evt- the selection change event
-
selectionStarted
void selectionStarted(SelectionEvent evt)
Invoked when a selection started.- Parameters:
evt- the selection change event
-
-