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 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