org.apache.pivot.wtk
Class TextAreaContentListener.Adapter
java.lang.Object
org.apache.pivot.wtk.TextAreaContentListener.Adapter
- All Implemented Interfaces:
- TextAreaContentListener
- Enclosing interface:
- TextAreaContentListener
public static class TextAreaContentListener.Adapter
- extends Object
- implements TextAreaContentListener
Text input text listener adapter.
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
TextAreaContentListener.Adapter
public TextAreaContentListener.Adapter()
paragraphInserted
public void paragraphInserted(TextArea textArea,
int index)
- Description copied from interface:
TextAreaContentListener
- Called when a paragraph has been inserted into a text area's paragraph
sequence.
- Specified by:
paragraphInserted
in interface TextAreaContentListener
- Parameters:
textArea
- The source of the event.index
- The index at which the paragraph was inserted.
paragraphsRemoved
public void paragraphsRemoved(TextArea textArea,
int index,
Sequence<TextArea.Paragraph> removed)
- Description copied from interface:
TextAreaContentListener
- Called when paragraphs have been removed from a text area's paragraph
sequence.
- Specified by:
paragraphsRemoved
in interface TextAreaContentListener
- Parameters:
textArea
- The source of the event.index
- The starting index from which the paragraphs were removed.removed
- The paragraphs that were removed.
textChanged
public void textChanged(TextArea textArea)
- Description copied from interface:
TextAreaContentListener
- Called when a text area's text has changed.
- Specified by:
textChanged
in interface TextAreaContentListener
- Parameters:
textArea
- The source of the event.