Package adams.gui.core
Interface AppendableTextAreaComponent
-
- All Superinterfaces:
TextAreaComponent
- All Known Implementing Classes:
BaseTextArea
,BaseTextAreaWithButtons
,TextEditorPanel.TextEditorArea
public interface AppendableTextAreaComponent extends TextAreaComponent
Text area components that allow appending of text.- Author:
- FracPete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
append(String text)
Appends the given text to the end of the document.-
Methods inherited from interface adams.gui.core.TextAreaComponent
getCaretPosition, getColumns, getDocument, getLineWrap, getRows, getSelectedText, getText, getTextFont, getWrapStyleWord, isEditable, setCaretPosition, setCaretPositionLast, setColumns, setEditable, setLineWrap, setRows, setText, setTextFont, setWrapStyleWord
-
-
-
-
Method Detail
-
append
void append(String text)
Appends the given text to the end of the document. Does nothing if the model is null or the string is null or empty.- Parameters:
text
- the text to insert
-
-