so in my gui class (the main class) i have a text field, which is sort of the debug window
but i want to write to it from constructors of other classes
but those constructors are called from the action listener of the gui class
so the problem is, i dont have an instance name for the gui class when i try to append to the debug text area in the constructors
how do i append to a text area in another class when i have no instance name for the class with the text area in it?