Package kiyut.sketsa.canvas.event
Interface TextListener
-
- All Superinterfaces:
EventListener
- All Known Implementing Classes:
TextAdapter
public interface TextListener extends EventListener
Defines a listener for canvas text events.- Author:
- Kiyut
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidchangedUpdate(TextEvent e)Invoked when the value of the text has changed for type CHANGE.voidinsertUpdate(TextEvent e)Invoked when the value of the text has changed for type INSERT.voidremoveUpdate(TextEvent e)Invoked when the value of the text has changed for type REMOVE.
-
-
-
Method Detail
-
changedUpdate
void changedUpdate(TextEvent e)
Invoked when the value of the text has changed for type CHANGE.- Parameters:
e- TextEvent
-
insertUpdate
void insertUpdate(TextEvent e)
Invoked when the value of the text has changed for type INSERT.- Parameters:
e- TextEvent
-
removeUpdate
void removeUpdate(TextEvent e)
Invoked when the value of the text has changed for type REMOVE.- Parameters:
e- TextEvent
-
-