I have a JTextArea that I would like to have updated as strings are appended to it.
public void updateMessageCenter(String message){
this.outTextArea.append(message + newline);
}
whenever this:
updateMessageCenter("this would be the message");
Is called I would like it to display in the text area.
The append works, but it only displays the result
AFTER the program has finished executing.
Thanks