JFrame <-> Thread communication
i'm new toswing. sorry for basic question:
i openJFrame and start aThread and i need this
thread to communicate with theJFrame (like writing
text into aJTextPanes in theJFrame) as well as other
stuff.
publicstaticvoid main(){
...
JFrame jf =new MyJFrame();
jf.setVisible(true);
Thread t =new MyThread();
// ..................... here?
t.start();
}
of course, i need to be using interfaces in the method signatures.
thanks.

