I have a GUI which has textarea and buttons and etc.........
I have a different class which is a thread that is running constantly. I want to append text to the textarea when certain conditions are met in the thread class.
In the class containing the textarea i have getter methods for the textarea. I have also declared that class(containing the textarea) as a variable in the thread class.
I try to call the get method of the textarea on the variable and afterwards the append() method, but the textarea doesn't update itself.
what am i doing wrong?
thanks for your help.