Tags
links:
– https://weblogs.java.net/blog/alexfromsun/archive/2006/02/debugging_swing.html
– http://stackoverflow.com/questions/11825281/java-swing-running-on-edt
– http://stackoverflow.com/questions/7896723/how-do-you-use-the-event-dispatch-thread
summary:
– use code to detect misuse of EDT
– AspectJ needed
– mostly call don’t need invokeXX cuz swing does that automatically
– implicit calling of invokeXX only needed for timer, action from external event, main thread or other thread created
Advertisements