JTextArea: text not visible but existent after calling setText()
Hi everybody
I got a strange problem concerning JTextArea which should display messages in a Chat sent over RMI: the messages are added to the area but not visible after calling setText() (during debugging, the getText() method returns the added message). I first thought it was a problem with threads since the setText() method gets called out of the system thread on the receiving side. So I used SwingUtilities.invokeLater(new Runnable()...); to do the trick and the setText() was performed by the EventDispatch thread (seen in debug mode) but still the JTextArea remained visually empty.
Do you have any idea what the problem could be? The text is there, I can manually write in the area but after receiving messages the area is not updated.
thanx for your help!

