Package org.apache.batik.swing.gvt
Class TextSelectionManager.TextSelectionListener
- java.lang.Object
-
- org.apache.batik.swing.gvt.TextSelectionManager.TextSelectionListener
-
- All Implemented Interfaces:
java.util.EventListener,SelectionListener
- Enclosing class:
- TextSelectionManager
protected class TextSelectionManager.TextSelectionListener extends java.lang.Object implements SelectionListener
To implements a selection listener.
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedTextSelectionListener()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidselectionChanged(SelectionEvent e)Invoked when a selection has changed.voidselectionCleared(SelectionEvent e)Invoked when a selection is cleared.voidselectionDone(SelectionEvent e)Invoked when a selection is done.voidselectionStarted(SelectionEvent e)Invoked when a selection started.
-
-
-
Method Detail
-
selectionDone
public void selectionDone(SelectionEvent e)
Description copied from interface:SelectionListenerInvoked when a selection is done.- Specified by:
selectionDonein interfaceSelectionListener- Parameters:
e- the selection change event
-
selectionCleared
public void selectionCleared(SelectionEvent e)
Description copied from interface:SelectionListenerInvoked when a selection is cleared.- Specified by:
selectionClearedin interfaceSelectionListener- Parameters:
e- the selection change event
-
selectionStarted
public void selectionStarted(SelectionEvent e)
Description copied from interface:SelectionListenerInvoked when a selection started.- Specified by:
selectionStartedin interfaceSelectionListener- Parameters:
e- the selection change event
-
selectionChanged
public void selectionChanged(SelectionEvent e)
Description copied from interface:SelectionListenerInvoked when a selection has changed.- Specified by:
selectionChangedin interfaceSelectionListener- Parameters:
e- the selection change event
-
-