How can I add text to a JTextArea instead of replacing all of it?
JTextArea
I know about setText(String) but other than that I\'m a bit lost.
setText(String)
void append(JTextArea area, String newText){ area.setText(area.getText() + newText) }