Event dispatching thread: Difference between revisions

Content deleted Content added
direct link
No edit summary
Line 33:
 
=== Timer ===
For short tasks that must access/modify GUI periodically or at specific time, <code>javax.swing.Timer</code> is used. It can be considered as an invisible GUI component, whose listeners are registerregistered to fire at specific time(s).
 
Equivalents