Recognizing Blocked Swing EDT
问题 How to know that EDT is blocked (not visually but by inspecting the thread itself)? is there a way? I'm on the way to my final university task for graduation that have bunch of charts , but have little knowledge of Swing EDT (Java generally). have look at this piece: SwingUtilities.invokeLater(new Runnable() { public void run() { // task here } }); If we do some tasks that modify gui component on the block (including calling another Thread) , is that already the correct approach? And since