class javax.swing.TimerQueue implements java.lang.Runnable
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: javax.swing.TimerQueue
  super_class: java.lang.Object
{
  private static final java.lang.Object sharedInstanceKey;
    descriptor: Ljava/lang/Object;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final java.lang.Object expiredTimersKey;
    descriptor: Ljava/lang/Object;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private final java.util.concurrent.DelayQueue<javax.swing.TimerQueue$DelayedTimer> queue;
    descriptor: Ljava/util/concurrent/DelayQueue;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/concurrent/DelayQueue<Ljavax/swing/TimerQueue$DelayedTimer;>;

  private volatile boolean running;
    descriptor: Z
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

  private final java.util.concurrent.locks.Lock runningLock;
    descriptor: Ljava/util/concurrent/locks/Lock;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private static final java.lang.Object classLock;
    descriptor: Ljava/lang/Object;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final long NANO_ORIGIN;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  static final boolean $assertionsDisabled;
    descriptor: Z
    flags: (0x1018) ACC_STATIC, ACC_FINAL, ACC_SYNTHETIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=0, args_size=0
         0: .line 48
            ldc Ljavax/swing/TimerQueue;
            invokevirtual java.lang.Class.desiredAssertionStatus:()Z
            ifne 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: putstatic javax.swing.TimerQueue.$assertionsDisabled:Z
         3: .line 51
            new java.lang.StringBuffer
            dup
            ldc "TimerQueue.sharedInstanceKey"
            invokespecial java.lang.StringBuffer.<init>:(Ljava/lang/String;)V
         4: .line 50
            putstatic javax.swing.TimerQueue.sharedInstanceKey:Ljava/lang/Object;
         5: .line 53
            new java.lang.StringBuffer
            dup
            ldc "TimerQueue.expiredTimersKey"
            invokespecial java.lang.StringBuffer.<init>:(Ljava/lang/String;)V
         6: .line 52
            putstatic javax.swing.TimerQueue.expiredTimersKey:Ljava/lang/Object;
         7: .line 62
            new java.lang.Object
            dup
            invokespecial java.lang.Object.<init>:()V
            putstatic javax.swing.TimerQueue.classLock:Ljava/lang/Object;
         8: .line 65
            invokestatic java.lang.System.nanoTime:()J
            putstatic javax.swing.TimerQueue.NANO_ORIGIN:J
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // javax.swing.TimerQueue this
         0: .line 71
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 72
            aload 0 /* this */
            new java.util.concurrent.DelayQueue
            dup
            invokespecial java.util.concurrent.DelayQueue.<init>:()V
            putfield javax.swing.TimerQueue.queue:Ljava/util/concurrent/DelayQueue;
         2: .line 74
            aload 0 /* this */
            new java.util.concurrent.locks.ReentrantLock
            dup
            invokespecial java.util.concurrent.locks.ReentrantLock.<init>:()V
            putfield javax.swing.TimerQueue.runningLock:Ljava/util/concurrent/locks/Lock;
         3: .line 75
            aload 0 /* this */
            invokevirtual javax.swing.TimerQueue.startIfNeeded:()V
         4: .line 76
            return
        end local 0 // javax.swing.TimerQueue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Ljavax/swing/TimerQueue;

  public static javax.swing.TimerQueue sharedInstance();
    descriptor: ()Ljavax/swing/TimerQueue;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=0
         0: .line 80
            getstatic javax.swing.TimerQueue.classLock:Ljava/lang/Object;
            dup
            astore 0
            monitorenter
         1: .line 83
            getstatic javax.swing.TimerQueue.sharedInstanceKey:Ljava/lang/Object;
         2: .line 82
            invokestatic javax.swing.SwingUtilities.appContextGet:(Ljava/lang/Object;)Ljava/lang/Object;
         3: .line 81
            checkcast javax.swing.TimerQueue
            astore 1 /* sharedInst */
        start local 1 // javax.swing.TimerQueue sharedInst
         4: .line 84
            aload 1 /* sharedInst */
            ifnonnull 7
         5: .line 85
            new javax.swing.TimerQueue
            dup
            invokespecial javax.swing.TimerQueue.<init>:()V
            astore 1 /* sharedInst */
         6: .line 86
            getstatic javax.swing.TimerQueue.sharedInstanceKey:Ljava/lang/Object;
            aload 1 /* sharedInst */
            invokestatic javax.swing.SwingUtilities.appContextPut:(Ljava/lang/Object;Ljava/lang/Object;)V
         7: .line 88
      StackMap locals: java.lang.Object javax.swing.TimerQueue
      StackMap stack:
            aload 1 /* sharedInst */
            aload 0
            monitorexit
         8: areturn
        end local 1 // javax.swing.TimerQueue sharedInst
         9: .line 80
      StackMap locals: java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 0
            monitorexit
        10: athrow
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            4    9     1  sharedInst  Ljavax/swing/TimerQueue;
      Exception table:
        from    to  target  type
           1     8       9  any
           9    10       9  any

  void startIfNeeded();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // javax.swing.TimerQueue this
         0: .line 94
            aload 0 /* this */
            getfield javax.swing.TimerQueue.running:Z
            ifne 14
         1: .line 95
            aload 0 /* this */
            getfield javax.swing.TimerQueue.runningLock:Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.lock:()V
         2: .line 96
            aload 0 /* this */
            getfield javax.swing.TimerQueue.running:Z
            ifeq 4
         3: .line 97
            return
         4: .line 101
      StackMap locals:
      StackMap stack:
            invokestatic sun.awt.AppContext.getAppContext:()Lsun/awt/AppContext;
            invokevirtual sun.awt.AppContext.getThreadGroup:()Ljava/lang/ThreadGroup;
         5: .line 100
            astore 1 /* threadGroup */
        start local 1 // java.lang.ThreadGroup threadGroup
         6: .line 103
            new javax.swing.TimerQueue$1
            dup
            aload 0 /* this */
            aload 1 /* threadGroup */
            invokespecial javax.swing.TimerQueue$1.<init>:(Ljavax/swing/TimerQueue;Ljava/lang/ThreadGroup;)V
         7: .line 102
            invokestatic java.security.AccessController.doPrivileged:(Ljava/security/PrivilegedAction;)Ljava/lang/Object;
            pop
         8: .line 113
            aload 0 /* this */
            iconst_1
            putfield javax.swing.TimerQueue.running:Z
        end local 1 // java.lang.ThreadGroup threadGroup
         9: .line 114
            goto 13
      StackMap locals:
      StackMap stack: java.lang.Throwable
        10: astore 2
        11: .line 115
            aload 0 /* this */
            getfield javax.swing.TimerQueue.runningLock:Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
        12: .line 116
            aload 2
            athrow
        13: .line 115
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.TimerQueue.runningLock:Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
        14: .line 118
      StackMap locals:
      StackMap stack:
            return
        end local 0 // javax.swing.TimerQueue this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   15     0         this  Ljavax/swing/TimerQueue;
            6    9     1  threadGroup  Ljava/lang/ThreadGroup;
      Exception table:
        from    to  target  type
           4    10      10  any

  void addTimer(javax.swing.Timer, long);
    descriptor: (Ljavax/swing/Timer;J)V
    flags: (0x0000) 
    Code:
      stack=8, locals=5, args_size=3
        start local 0 // javax.swing.TimerQueue this
        start local 1 // javax.swing.Timer timer
        start local 2 // long delayMillis
         0: .line 121
            aload 1 /* timer */
            invokevirtual javax.swing.Timer.getLock:()Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.lock:()V
         1: .line 124
            aload 0 /* this */
            aload 1 /* timer */
            invokevirtual javax.swing.TimerQueue.containsTimer:(Ljavax/swing/Timer;)Z
            ifne 11
         2: .line 125
            aload 0 /* this */
            new javax.swing.TimerQueue$DelayedTimer
            dup
            aload 1 /* timer */
         3: .line 126
            getstatic java.util.concurrent.TimeUnit.MILLISECONDS:Ljava/util/concurrent/TimeUnit;
            lload 2 /* delayMillis */
            invokevirtual java.util.concurrent.TimeUnit.toNanos:(J)J
         4: .line 127
            invokestatic javax.swing.TimerQueue.now:()J
         5: .line 126
            ladd
            invokespecial javax.swing.TimerQueue$DelayedTimer.<init>:(Ljavax/swing/Timer;J)V
         6: .line 125
            invokevirtual javax.swing.TimerQueue.addTimer:(Ljavax/swing/TimerQueue$DelayedTimer;)V
         7: .line 129
            goto 11
      StackMap locals:
      StackMap stack: java.lang.Throwable
         8: astore 4
         9: .line 130
            aload 1 /* timer */
            invokevirtual javax.swing.Timer.getLock:()Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
        10: .line 131
            aload 4
            athrow
        11: .line 130
      StackMap locals:
      StackMap stack:
            aload 1 /* timer */
            invokevirtual javax.swing.Timer.getLock:()Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
        12: .line 132
            return
        end local 2 // long delayMillis
        end local 1 // javax.swing.Timer timer
        end local 0 // javax.swing.TimerQueue this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   13     0         this  Ljavax/swing/TimerQueue;
            0   13     1        timer  Ljavax/swing/Timer;
            0   13     2  delayMillis  J
      Exception table:
        from    to  target  type
           1     8       8  any
    MethodParameters:
             Name  Flags
      timer        
      delayMillis  

  private void addTimer(javax.swing.TimerQueue$DelayedTimer);
    descriptor: (Ljavax/swing/TimerQueue$DelayedTimer;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // javax.swing.TimerQueue this
        start local 1 // javax.swing.TimerQueue$DelayedTimer delayedTimer
         0: .line 135
            getstatic javax.swing.TimerQueue.$assertionsDisabled:Z
            ifne 2
            aload 1 /* delayedTimer */
            ifnull 1
            aload 0 /* this */
            aload 1 /* delayedTimer */
            invokevirtual javax.swing.TimerQueue$DelayedTimer.getTimer:()Ljavax/swing/Timer;
            invokevirtual javax.swing.TimerQueue.containsTimer:(Ljavax/swing/Timer;)Z
            ifeq 2
      StackMap locals:
      StackMap stack:
         1: new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         2: .line 137
      StackMap locals:
      StackMap stack:
            aload 1 /* delayedTimer */
            invokevirtual javax.swing.TimerQueue$DelayedTimer.getTimer:()Ljavax/swing/Timer;
            astore 2 /* timer */
        start local 2 // javax.swing.Timer timer
         3: .line 138
            aload 2 /* timer */
            invokevirtual javax.swing.Timer.getLock:()Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.lock:()V
         4: .line 140
            aload 2 /* timer */
            aload 1 /* delayedTimer */
            putfield javax.swing.Timer.delayedTimer:Ljavax/swing/TimerQueue$DelayedTimer;
         5: .line 141
            aload 0 /* this */
            getfield javax.swing.TimerQueue.queue:Ljava/util/concurrent/DelayQueue;
            aload 1 /* delayedTimer */
            invokevirtual java.util.concurrent.DelayQueue.add:(Ljava/util/concurrent/Delayed;)Z
            pop
         6: .line 142
            goto 10
      StackMap locals: javax.swing.TimerQueue javax.swing.TimerQueue$DelayedTimer javax.swing.Timer
      StackMap stack: java.lang.Throwable
         7: astore 3
         8: .line 143
            aload 2 /* timer */
            invokevirtual javax.swing.Timer.getLock:()Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
         9: .line 144
            aload 3
            athrow
        10: .line 143
      StackMap locals:
      StackMap stack:
            aload 2 /* timer */
            invokevirtual javax.swing.Timer.getLock:()Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
        11: .line 145
            return
        end local 2 // javax.swing.Timer timer
        end local 1 // javax.swing.TimerQueue$DelayedTimer delayedTimer
        end local 0 // javax.swing.TimerQueue this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   12     0          this  Ljavax/swing/TimerQueue;
            0   12     1  delayedTimer  Ljavax/swing/TimerQueue$DelayedTimer;
            3   12     2         timer  Ljavax/swing/Timer;
      Exception table:
        from    to  target  type
           4     7       7  any
    MethodParameters:
              Name  Flags
      delayedTimer  

  void removeTimer(javax.swing.Timer);
    descriptor: (Ljavax/swing/Timer;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // javax.swing.TimerQueue this
        start local 1 // javax.swing.Timer timer
         0: .line 148
            aload 1 /* timer */
            invokevirtual javax.swing.Timer.getLock:()Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.lock:()V
         1: .line 150
            aload 1 /* timer */
            getfield javax.swing.Timer.delayedTimer:Ljavax/swing/TimerQueue$DelayedTimer;
            ifnull 8
         2: .line 151
            aload 0 /* this */
            getfield javax.swing.TimerQueue.queue:Ljava/util/concurrent/DelayQueue;
            aload 1 /* timer */
            getfield javax.swing.Timer.delayedTimer:Ljavax/swing/TimerQueue$DelayedTimer;
            invokevirtual java.util.concurrent.DelayQueue.remove:(Ljava/lang/Object;)Z
            pop
         3: .line 152
            aload 1 /* timer */
            aconst_null
            putfield javax.swing.Timer.delayedTimer:Ljavax/swing/TimerQueue$DelayedTimer;
         4: .line 154
            goto 8
      StackMap locals:
      StackMap stack: java.lang.Throwable
         5: astore 2
         6: .line 155
            aload 1 /* timer */
            invokevirtual javax.swing.Timer.getLock:()Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
         7: .line 156
            aload 2
            athrow
         8: .line 155
      StackMap locals:
      StackMap stack:
            aload 1 /* timer */
            invokevirtual javax.swing.Timer.getLock:()Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
         9: .line 157
            return
        end local 1 // javax.swing.Timer timer
        end local 0 // javax.swing.TimerQueue this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Ljavax/swing/TimerQueue;
            0   10     1  timer  Ljavax/swing/Timer;
      Exception table:
        from    to  target  type
           1     5       5  any
    MethodParameters:
       Name  Flags
      timer  

  boolean containsTimer(javax.swing.Timer);
    descriptor: (Ljavax/swing/Timer;)Z
    flags: (0x0000) 
    Code:
      stack=1, locals=4, args_size=2
        start local 0 // javax.swing.TimerQueue this
        start local 1 // javax.swing.Timer timer
         0: .line 160
            aload 1 /* timer */
            invokevirtual javax.swing.Timer.getLock:()Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.lock:()V
         1: .line 162
            aload 1 /* timer */
            getfield javax.swing.Timer.delayedTimer:Ljavax/swing/TimerQueue$DelayedTimer;
            ifnull 2
            iconst_1
            goto 3
      StackMap locals:
      StackMap stack:
         2: iconst_0
      StackMap locals:
      StackMap stack: int
         3: istore 3
         4: .line 164
            aload 1 /* timer */
            invokevirtual javax.swing.Timer.getLock:()Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
         5: .line 162
            iload 3
            ireturn
         6: .line 163
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 2
         7: .line 164
            aload 1 /* timer */
            invokevirtual javax.swing.Timer.getLock:()Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
         8: .line 165
            aload 2
            athrow
        end local 1 // javax.swing.Timer timer
        end local 0 // javax.swing.TimerQueue this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0   this  Ljavax/swing/TimerQueue;
            0    9     1  timer  Ljavax/swing/Timer;
      Exception table:
        from    to  target  type
           1     4       6  any
    MethodParameters:
       Name  Flags
      timer  

  public void run();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=6, args_size=1
        start local 0 // javax.swing.TimerQueue this
         0: .line 170
            aload 0 /* this */
            getfield javax.swing.TimerQueue.runningLock:Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.lock:()V
         1: .line 172
            goto 28
         2: .line 174
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.TimerQueue.queue:Ljava/util/concurrent/DelayQueue;
            invokevirtual java.util.concurrent.DelayQueue.take:()Ljava/util/concurrent/Delayed;
            checkcast javax.swing.TimerQueue$DelayedTimer
            astore 1 /* runningTimer */
        start local 1 // javax.swing.TimerQueue$DelayedTimer runningTimer
         3: .line 175
            aload 1 /* runningTimer */
            invokevirtual javax.swing.TimerQueue$DelayedTimer.getTimer:()Ljavax/swing/Timer;
            astore 2 /* timer */
        start local 2 // javax.swing.Timer timer
         4: .line 176
            aload 2 /* timer */
            invokevirtual javax.swing.Timer.getLock:()Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.lock:()V
         5: .line 178
            aload 2 /* timer */
            getfield javax.swing.Timer.delayedTimer:Ljavax/swing/TimerQueue$DelayedTimer;
            astore 3 /* delayedTimer */
        start local 3 // javax.swing.TimerQueue$DelayedTimer delayedTimer
         6: .line 179
            aload 3 /* delayedTimer */
            aload 1 /* runningTimer */
            if_acmpne 16
         7: .line 186
            aload 2 /* timer */
            invokevirtual javax.swing.Timer.post:()V
         8: .line 187
            aload 2 /* timer */
            aconst_null
            putfield javax.swing.Timer.delayedTimer:Ljavax/swing/TimerQueue$DelayedTimer;
         9: .line 188
            aload 2 /* timer */
            invokevirtual javax.swing.Timer.isRepeats:()Z
            ifeq 16
        10: .line 189
            aload 3 /* delayedTimer */
            invokestatic javax.swing.TimerQueue.now:()J
        11: .line 190
            getstatic java.util.concurrent.TimeUnit.MILLISECONDS:Ljava/util/concurrent/TimeUnit;
        12: .line 191
            aload 2 /* timer */
            invokevirtual javax.swing.Timer.getDelay:()I
            i2l
        13: .line 190
            invokevirtual java.util.concurrent.TimeUnit.toNanos:(J)J
            ladd
        14: .line 189
            invokevirtual javax.swing.TimerQueue$DelayedTimer.setTime:(J)V
        15: .line 192
            aload 0 /* this */
            aload 3 /* delayedTimer */
            invokevirtual javax.swing.TimerQueue.addTimer:(Ljavax/swing/TimerQueue$DelayedTimer;)V
        16: .line 197
      StackMap locals: javax.swing.TimerQueue$DelayedTimer javax.swing.Timer javax.swing.TimerQueue$DelayedTimer
      StackMap stack:
            aload 2 /* timer */
            invokevirtual javax.swing.Timer.getLock:()Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.newCondition:()Ljava/util/concurrent/locks/Condition;
            lconst_1
            invokeinterface java.util.concurrent.locks.Condition.awaitNanos:(J)J
            pop2
        end local 3 // javax.swing.TimerQueue$DelayedTimer delayedTimer
        17: .line 198
            goto 23
      StackMap locals: javax.swing.TimerQueue javax.swing.TimerQueue$DelayedTimer javax.swing.Timer
      StackMap stack: java.lang.SecurityException
        18: pop
        19: .line 200
            aload 2 /* timer */
            invokevirtual javax.swing.Timer.getLock:()Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
            goto 28
        20: .line 199
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 4
        21: .line 200
            aload 2 /* timer */
            invokevirtual javax.swing.Timer.getLock:()Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
        22: .line 201
            aload 4
            athrow
        23: .line 200
      StackMap locals:
      StackMap stack:
            aload 2 /* timer */
            invokevirtual javax.swing.Timer.getLock:()Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
        end local 2 // javax.swing.Timer timer
        end local 1 // javax.swing.TimerQueue$DelayedTimer runningTimer
        24: .line 202
            goto 28
      StackMap locals: javax.swing.TimerQueue
      StackMap stack: java.lang.InterruptedException
        25: pop
        26: .line 205
            invokestatic sun.awt.AppContext.getAppContext:()Lsun/awt/AppContext;
            invokevirtual sun.awt.AppContext.isDisposed:()Z
            ifeq 28
        27: .line 206
            goto 40
        28: .line 172
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.TimerQueue.running:Z
            ifne 2
        29: .line 210
            goto 40
        30: .line 211
      StackMap locals:
      StackMap stack: java.lang.ThreadDeath
            astore 1 /* td */
        start local 1 // java.lang.ThreadDeath td
        31: .line 213
            aload 0 /* this */
            getfield javax.swing.TimerQueue.queue:Ljava/util/concurrent/DelayQueue;
            invokevirtual java.util.concurrent.DelayQueue.iterator:()Ljava/util/Iterator;
            astore 3
            goto 34
      StackMap locals: javax.swing.TimerQueue java.lang.ThreadDeath top java.util.Iterator
      StackMap stack:
        32: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast javax.swing.TimerQueue$DelayedTimer
            astore 2 /* delayedTimer */
        start local 2 // javax.swing.TimerQueue$DelayedTimer delayedTimer
        33: .line 214
            aload 2 /* delayedTimer */
            invokevirtual javax.swing.TimerQueue$DelayedTimer.getTimer:()Ljavax/swing/Timer;
            invokevirtual javax.swing.Timer.cancelEvent:()V
        end local 2 // javax.swing.TimerQueue$DelayedTimer delayedTimer
        34: .line 213
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 32
        35: .line 216
            aload 1 /* td */
            athrow
        end local 1 // java.lang.ThreadDeath td
        36: .line 217
      StackMap locals: javax.swing.TimerQueue
      StackMap stack: java.lang.Throwable
            astore 5
        37: .line 218
            aload 0 /* this */
            iconst_0
            putfield javax.swing.TimerQueue.running:Z
        38: .line 219
            aload 0 /* this */
            getfield javax.swing.TimerQueue.runningLock:Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
        39: .line 220
            aload 5
            athrow
        40: .line 218
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield javax.swing.TimerQueue.running:Z
        41: .line 219
            aload 0 /* this */
            getfield javax.swing.TimerQueue.runningLock:Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
        42: .line 221
            return
        end local 0 // javax.swing.TimerQueue this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   43     0          this  Ljavax/swing/TimerQueue;
            3   24     1  runningTimer  Ljavax/swing/TimerQueue$DelayedTimer;
            4   24     2         timer  Ljavax/swing/Timer;
            6   17     3  delayedTimer  Ljavax/swing/TimerQueue$DelayedTimer;
           31   36     1            td  Ljava/lang/ThreadDeath;
           33   34     2  delayedTimer  Ljavax/swing/TimerQueue$DelayedTimer;
      Exception table:
        from    to  target  type
           5    17      18  Class java.lang.SecurityException
           5    19      20  any
           2    24      25  Class java.lang.InterruptedException
           1    29      30  Class java.lang.ThreadDeath
           1    36      36  any

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=1
        start local 0 // javax.swing.TimerQueue this
         0: .line 225
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 1 /* buf */
        start local 1 // java.lang.StringBuilder buf
         1: .line 226
            aload 1 /* buf */
            ldc "TimerQueue ("
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         2: .line 227
            iconst_1
            istore 2 /* isFirst */
        start local 2 // boolean isFirst
         3: .line 228
            aload 0 /* this */
            getfield javax.swing.TimerQueue.queue:Ljava/util/concurrent/DelayQueue;
            invokevirtual java.util.concurrent.DelayQueue.iterator:()Ljava/util/Iterator;
            astore 4
            goto 9
      StackMap locals: javax.swing.TimerQueue java.lang.StringBuilder int top java.util.Iterator
      StackMap stack:
         4: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast javax.swing.TimerQueue$DelayedTimer
            astore 3 /* delayedTimer */
        start local 3 // javax.swing.TimerQueue$DelayedTimer delayedTimer
         5: .line 229
            iload 2 /* isFirst */
            ifne 7
         6: .line 230
            aload 1 /* buf */
            ldc ", "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         7: .line 232
      StackMap locals: javax.swing.TimerQueue java.lang.StringBuilder int javax.swing.TimerQueue$DelayedTimer java.util.Iterator
      StackMap stack:
            aload 1 /* buf */
            aload 3 /* delayedTimer */
            invokevirtual javax.swing.TimerQueue$DelayedTimer.getTimer:()Ljavax/swing/Timer;
            invokevirtual java.lang.Object.toString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         8: .line 233
            iconst_0
            istore 2 /* isFirst */
        end local 3 // javax.swing.TimerQueue$DelayedTimer delayedTimer
         9: .line 228
      StackMap locals: javax.swing.TimerQueue java.lang.StringBuilder int top java.util.Iterator
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 4
        10: .line 235
            aload 1 /* buf */
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        11: .line 236
            aload 1 /* buf */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 2 // boolean isFirst
        end local 1 // java.lang.StringBuilder buf
        end local 0 // javax.swing.TimerQueue this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   12     0          this  Ljavax/swing/TimerQueue;
            1   12     1           buf  Ljava/lang/StringBuilder;
            3   12     2       isFirst  Z
            5    9     3  delayedTimer  Ljavax/swing/TimerQueue$DelayedTimer;

  private static long now();
    descriptor: ()J
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=4, locals=0, args_size=0
         0: .line 243
            invokestatic java.lang.System.nanoTime:()J
            getstatic javax.swing.TimerQueue.NANO_ORIGIN:J
            lsub
            lreturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "TimerQueue.java"
NestMembers:
  javax.swing.TimerQueue$1  javax.swing.TimerQueue$DelayedTimer
InnerClasses:
  javax.swing.TimerQueue$1
  DelayedTimer = javax.swing.TimerQueue$DelayedTimer of javax.swing.TimerQueue