JTextArea: append(String str) : JTextArea « javax.swing « Java by API






JTextArea: append(String str)

 



import javax.swing.JTextArea;

public class Main {
  public static void main(String[] argv) {
    JTextArea ta = new JTextArea("Initial Text");
    ta.append("some text");

  }
}

   
  








Related examples in the same category

1.new JTextArea(Document document)
2.new JTextArea(String text)
3.new JTextArea(String text, int rows, int columns)
4.JTextArea: addCaretListener(CaretListener listener)
5.JTextArea: addUndoableEditListener(UndoableEditListener lis)
6.JTextArea: getActionMap()
7.JTextArea: getActions()
8.JTextArea: getCaretPosition()
9.JTextArea: getDocument()
10.JTextArea: getFont()
11.JTextArea: getHighlighter()
12.JTextArea: getKeymap()
13.JTextArea: getLineCount()
14.JTextArea: getLineEndOffset(int line)
15.JTextArea.getLineOfOffset(int offset)
16.JTextArea: getLineStartOffset(int line)
17.JTextArea: insert(String str, int pos)
18.JTextArea: isManagingFocus()
19.JTextArea: paste()
20.JTextArea: read(Reader in, Object desc)
21.JTextArea: replaceRange(String str, int start, int end)
22.JTextArea: setCaretColor(Color c)
23.JTextField: setHorizontalAlignment(int pos)
24.JTextArea: setLineWrap(boolean wrap)
25.JTextArea: setTabSize(int size)
26.JTextArea: setWrapStyleWord(boolean word)
27.JTextArea: write(Writer out)