org.apache.pivot.wtk
Interface TextPaneCharacterListener

All Known Implementing Classes:
TextPaneCharacterListener.Adapter

public interface TextPaneCharacterListener

Text pane character listener interface.


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

Method Detail

charactersInserted

void charactersInserted(TextPane textPane,
                        int index,
                        int count)
Called when characters have been inserted into a text pane.

Parameters:
textPane -
index -
count -

charactersRemoved

void charactersRemoved(TextPane textPane,
                       int index,
                       int count)
Called when characters have been removed from a text pane.

Parameters:
textPane -
index -
count -