home *** CD-ROM | disk | FTP | other *** search
- package javax.swing;
-
- class SystemEventQueueUtilities$TimerQueueRestart implements Runnable {
- boolean attemptedStart;
-
- private SystemEventQueueUtilities$TimerQueueRestart() {
- }
-
- public synchronized void run() {
- if (!this.attemptedStart) {
- TimerQueue var1 = TimerQueue.sharedInstance();
- synchronized(var1) {
- if (!var1.running) {
- var1.start();
- }
- }
-
- this.attemptedStart = true;
- }
-
- }
-
- // $FF: synthetic method
- SystemEventQueueUtilities$TimerQueueRestart(SystemEventQueueUtilities.1 var1) {
- this();
- }
- }
-