org.apache.pivot.wtk
Interface TextAreaCharacterListener

All Known Implementing Classes:
TextAreaCharacterListener.Adapter

public interface TextAreaCharacterListener

Text area character listener interface.


Nested Class Summary
static class TextAreaCharacterListener.Adapter
          Text area character listener adapter.
 
Method Summary
 void charactersInserted(TextArea textArea, int index, int count)
          Called when characters have been inserted into a text area.
 void charactersRemoved(TextArea textArea, int index, int count)
          Called when characters have been removed from a text area.
 

Method Detail

charactersInserted

void charactersInserted(TextArea textArea,
                        int index,
                        int count)
Called when characters have been inserted into a text area.

Parameters:
textArea -
index -
count -

charactersRemoved

void charactersRemoved(TextArea textArea,
                       int index,
                       int count)
Called when characters have been removed from a text area.

Parameters:
textArea -
index -
count -