Do I need an EDT for every call to JLabel.setText ()?

Should all JLabel.setText () calls go through the EDT?

+3
source share
1 answer

Yes, all calls that change user interface components must be made from EDT.

For some background information, you can check: Why should user interface elements always be created / updated from the user interface stream?

+8
source

All Articles