if the GUI was sure build by EDT does a repaint call on some other Thread invoke painting on the EDT? if not, how do i make sure it does, the more efficient the better.

link|improve this question

63% accept rate
Yes; see Painting in AWT and Swing. – trashgod Feb 15 at 7:24
feedback

1 Answer

up vote 3 down vote accepted

Basically method repaint() invoke EDT by default, everything works until first Thread.sleep(int) was called, then you have an issue with Concurency in Swing,

Have to look at Swing Timer, which providing basic funkcionalities for painting in the Swing or delaying any event(s) in the Swing GUI ,

If your update(s) isn't about Graphics then you can invoke EDT by wrapping output to the Swing GUI to the invokeLater()

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.