public class com.sun.scenario.animation.shared.FiniteClipEnvelope extends com.sun.scenario.animation.shared.ClipEnvelope
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.sun.scenario.animation.shared.FiniteClipEnvelope
  super_class: com.sun.scenario.animation.shared.ClipEnvelope
{
  private boolean autoReverse;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private int cycleCount;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private long totalTicks;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

  private long pos;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

  protected void <init>(javafx.animation.Animation);
    descriptor: (Ljavafx/animation/Animation;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.scenario.animation.shared.FiniteClipEnvelope this
        start local 1 // javafx.animation.Animation animation
         0: .line 40
            aload 0 /* this */
            aload 1 /* animation */
            invokespecial com.sun.scenario.animation.shared.ClipEnvelope.<init>:(Ljavafx/animation/Animation;)V
         1: .line 41
            aload 1 /* animation */
            ifnull 4
         2: .line 42
            aload 0 /* this */
            aload 1 /* animation */
            invokevirtual javafx.animation.Animation.isAutoReverse:()Z
            putfield com.sun.scenario.animation.shared.FiniteClipEnvelope.autoReverse:Z
         3: .line 43
            aload 0 /* this */
            aload 1 /* animation */
            invokevirtual javafx.animation.Animation.getCycleCount:()I
            putfield com.sun.scenario.animation.shared.FiniteClipEnvelope.cycleCount:I
         4: .line 45
      StackMap locals: com.sun.scenario.animation.shared.FiniteClipEnvelope javafx.animation.Animation
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.scenario.animation.shared.FiniteClipEnvelope.updateTotalTicks:()V
         5: .line 46
            return
        end local 1 // javafx.animation.Animation animation
        end local 0 // com.sun.scenario.animation.shared.FiniteClipEnvelope this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    6     0       this  Lcom/sun/scenario/animation/shared/FiniteClipEnvelope;
            0    6     1  animation  Ljavafx/animation/Animation;
    MethodParameters:
           Name  Flags
      animation  

  public void setAutoReverse(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.scenario.animation.shared.FiniteClipEnvelope this
        start local 1 // boolean autoReverse
         0: .line 50
            aload 0 /* this */
            iload 1 /* autoReverse */
            putfield com.sun.scenario.animation.shared.FiniteClipEnvelope.autoReverse:Z
         1: .line 51
            return
        end local 1 // boolean autoReverse
        end local 0 // com.sun.scenario.animation.shared.FiniteClipEnvelope this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lcom/sun/scenario/animation/shared/FiniteClipEnvelope;
            0    2     1  autoReverse  Z
    MethodParameters:
             Name  Flags
      autoReverse  

  protected double calculateCurrentRate();
    descriptor: ()D
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // com.sun.scenario.animation.shared.FiniteClipEnvelope this
         0: .line 55
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.autoReverse:Z
            ifne 1
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.rate:D
            goto 7
         1: .line 56
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.ticks:J
            ldc 2
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.cycleTicks:J
            lmul
            lrem
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.cycleTicks:J
            lcmp
            ifge 2
            iconst_1
            goto 3
      StackMap locals:
      StackMap stack:
         2: iconst_0
      StackMap locals:
      StackMap stack: int
         3: aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.rate:D
            dconst_0
            dcmpl
            ifle 4
            iconst_1
            goto 5
      StackMap locals:
      StackMap stack: int
         4: iconst_0
      StackMap locals: com.sun.scenario.animation.shared.FiniteClipEnvelope
      StackMap stack: int int
         5: if_icmpne 6
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.rate:D
            goto 7
      StackMap locals:
      StackMap stack:
         6: aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.rate:D
            dneg
         7: .line 55
      StackMap locals:
      StackMap stack: double
            dreturn
        end local 0 // com.sun.scenario.animation.shared.FiniteClipEnvelope this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lcom/sun/scenario/animation/shared/FiniteClipEnvelope;

  public com.sun.scenario.animation.shared.ClipEnvelope setCycleDuration(javafx.util.Duration);
    descriptor: (Ljavafx/util/Duration;)Lcom/sun/scenario/animation/shared/ClipEnvelope;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.scenario.animation.shared.FiniteClipEnvelope this
        start local 1 // javafx.util.Duration cycleDuration
         0: .line 61
            aload 1 /* cycleDuration */
            invokevirtual javafx.util.Duration.isIndefinite:()Z
            ifeq 2
         1: .line 62
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.animation:Ljavafx/animation/Animation;
            invokestatic com.sun.scenario.animation.shared.FiniteClipEnvelope.create:(Ljavafx/animation/Animation;)Lcom/sun/scenario/animation/shared/ClipEnvelope;
            areturn
         2: .line 64
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* cycleDuration */
            invokevirtual com.sun.scenario.animation.shared.FiniteClipEnvelope.updateCycleTicks:(Ljavafx/util/Duration;)V
         3: .line 65
            aload 0 /* this */
            invokevirtual com.sun.scenario.animation.shared.FiniteClipEnvelope.updateTotalTicks:()V
         4: .line 66
            aload 0 /* this */
            areturn
        end local 1 // javafx.util.Duration cycleDuration
        end local 0 // com.sun.scenario.animation.shared.FiniteClipEnvelope this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    5     0           this  Lcom/sun/scenario/animation/shared/FiniteClipEnvelope;
            0    5     1  cycleDuration  Ljavafx/util/Duration;
    MethodParameters:
               Name  Flags
      cycleDuration  

  public com.sun.scenario.animation.shared.ClipEnvelope setCycleCount(int);
    descriptor: (I)Lcom/sun/scenario/animation/shared/ClipEnvelope;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.scenario.animation.shared.FiniteClipEnvelope this
        start local 1 // int cycleCount
         0: .line 71
            iload 1 /* cycleCount */
            iconst_1
            if_icmpeq 1
            iload 1 /* cycleCount */
            iconst_m1
            if_icmpne 2
         1: .line 72
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.animation:Ljavafx/animation/Animation;
            invokestatic com.sun.scenario.animation.shared.FiniteClipEnvelope.create:(Ljavafx/animation/Animation;)Lcom/sun/scenario/animation/shared/ClipEnvelope;
            areturn
         2: .line 74
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* cycleCount */
            putfield com.sun.scenario.animation.shared.FiniteClipEnvelope.cycleCount:I
         3: .line 75
            aload 0 /* this */
            invokevirtual com.sun.scenario.animation.shared.FiniteClipEnvelope.updateTotalTicks:()V
         4: .line 76
            aload 0 /* this */
            areturn
        end local 1 // int cycleCount
        end local 0 // com.sun.scenario.animation.shared.FiniteClipEnvelope this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lcom/sun/scenario/animation/shared/FiniteClipEnvelope;
            0    5     1  cycleCount  I
    MethodParameters:
            Name  Flags
      cycleCount  

  public void setRate(double);
    descriptor: (D)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=9, locals=7, args_size=2
        start local 0 // com.sun.scenario.animation.shared.FiniteClipEnvelope this
        start local 1 // double rate
         0: .line 81
            dload 1 /* rate */
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.rate:D
            dmul
            dconst_0
            dcmpg
            ifge 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: istore 3 /* toggled */
        start local 3 // boolean toggled
         3: .line 82
            iload 3 /* toggled */
            ifeq 4
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.totalTicks:J
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.ticks:J
            lsub
            goto 5
      StackMap locals: int
      StackMap stack:
         4: aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.ticks:J
      StackMap locals:
      StackMap stack: long
         5: lstore 4 /* newTicks */
        start local 4 // long newTicks
         6: .line 83
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.animation:Ljavafx/animation/Animation;
            invokevirtual javafx.animation.Animation.getStatus:()Ljavafx/animation/Animation$Status;
            astore 6 /* status */
        start local 6 // javafx.animation.Animation$Status status
         7: .line 84
            aload 6 /* status */
            getstatic javafx.animation.Animation$Status.STOPPED:Ljavafx/animation/Animation$Status;
            if_acmpeq 14
         8: .line 85
            aload 6 /* status */
            getstatic javafx.animation.Animation$Status.RUNNING:Ljavafx/animation/Animation$Status;
            if_acmpne 12
         9: .line 86
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.currentRate:D
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.rate:D
            dsub
            invokestatic java.lang.Math.abs:(D)D
            ldc 1.0E-12
            dcmpg
            ifge 10
            dload 1 /* rate */
            goto 11
      StackMap locals: com.sun.scenario.animation.shared.FiniteClipEnvelope double int long javafx.animation.Animation$Status
      StackMap stack: com.sun.scenario.animation.shared.FiniteClipEnvelope
        10: dload 1 /* rate */
            dneg
      StackMap locals: com.sun.scenario.animation.shared.FiniteClipEnvelope double int long javafx.animation.Animation$Status
      StackMap stack: com.sun.scenario.animation.shared.FiniteClipEnvelope double
        11: invokevirtual com.sun.scenario.animation.shared.FiniteClipEnvelope.setCurrentRate:(D)V
        12: .line 88
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            lload 4 /* newTicks */
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.ticks:J
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.deltaTicks:J
            lsub
            l2d
            dload 1 /* rate */
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.rate:D
            ddiv
            invokestatic java.lang.Math.abs:(D)D
            dmul
            invokestatic java.lang.Math.round:(D)J
            lsub
            putfield com.sun.scenario.animation.shared.FiniteClipEnvelope.deltaTicks:J
        13: .line 89
            aload 0 /* this */
            invokevirtual com.sun.scenario.animation.shared.FiniteClipEnvelope.abortCurrentPulse:()V
        14: .line 91
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            lload 4 /* newTicks */
            putfield com.sun.scenario.animation.shared.FiniteClipEnvelope.ticks:J
        15: .line 92
            aload 0 /* this */
            dload 1 /* rate */
            putfield com.sun.scenario.animation.shared.FiniteClipEnvelope.rate:D
        16: .line 93
            return
        end local 6 // javafx.animation.Animation$Status status
        end local 4 // long newTicks
        end local 3 // boolean toggled
        end local 1 // double rate
        end local 0 // com.sun.scenario.animation.shared.FiniteClipEnvelope this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   17     0      this  Lcom/sun/scenario/animation/shared/FiniteClipEnvelope;
            0   17     1      rate  D
            3   17     3   toggled  Z
            6   17     4  newTicks  J
            7   17     6    status  Ljavafx/animation/Animation$Status;
    MethodParameters:
      Name  Flags
      rate  

  private void updateTotalTicks();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // com.sun.scenario.animation.shared.FiniteClipEnvelope this
         0: .line 96
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.cycleCount:I
            i2l
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.cycleTicks:J
            lmul
            putfield com.sun.scenario.animation.shared.FiniteClipEnvelope.totalTicks:J
         1: .line 97
            return
        end local 0 // com.sun.scenario.animation.shared.FiniteClipEnvelope this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/scenario/animation/shared/FiniteClipEnvelope;

  public void timePulse(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=11, args_size=2
        start local 0 // com.sun.scenario.animation.shared.FiniteClipEnvelope this
        start local 1 // long currentTick
         0: .line 101
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.cycleTicks:J
            lconst_0
            lcmp
            ifne 2
         1: .line 102
            return
         2: .line 104
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield com.sun.scenario.animation.shared.FiniteClipEnvelope.aborted:Z
         3: .line 105
            aload 0 /* this */
            iconst_1
            putfield com.sun.scenario.animation.shared.FiniteClipEnvelope.inTimePulse:Z
         4: .line 108
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.ticks:J
            lstore 3 /* oldTicks */
        start local 3 // long oldTicks
         5: .line 109
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.deltaTicks:J
            lload 1 /* currentTick */
            l2d
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.rate:D
            invokestatic java.lang.Math.abs:(D)D
            dmul
            invokestatic java.lang.Math.round:(D)J
            ladd
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.totalTicks:J
            invokestatic com.sun.scenario.animation.shared.ClipEnvelope.checkBounds:(JJ)J
            putfield com.sun.scenario.animation.shared.FiniteClipEnvelope.ticks:J
         6: .line 111
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.ticks:J
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.totalTicks:J
            lcmp
            iflt 7
            iconst_1
            goto 8
      StackMap locals: long
      StackMap stack:
         7: iconst_0
      StackMap locals:
      StackMap stack: int
         8: istore 5 /* reachedEnd */
        start local 5 // boolean reachedEnd
         9: .line 113
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.ticks:J
            lload 3 /* oldTicks */
            lsub
            lstore 6 /* overallDelta */
        start local 6 // long overallDelta
        10: .line 114
            lload 6 /* overallDelta */
            lconst_0
            lcmp
            ifne 13
        11: .line 151
            aload 0 /* this */
            iconst_0
            putfield com.sun.scenario.animation.shared.FiniteClipEnvelope.inTimePulse:Z
        12: .line 115
            return
        13: .line 118
      StackMap locals: int long
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.currentRate:D
            dconst_0
            dcmpl
            ifle 14
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.cycleTicks:J
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.pos:J
            lsub
            goto 15
      StackMap locals:
      StackMap stack:
        14: aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.pos:J
      StackMap locals:
      StackMap stack: long
        15: lstore 8 /* cycleDelta */
        start local 8 // long cycleDelta
        16: .line 120
            goto 35
        17: .line 121
      StackMap locals: long
      StackMap stack:
            lload 8 /* cycleDelta */
            lconst_0
            lcmp
            ifle 26
        18: .line 122
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.currentRate:D
            dconst_0
            dcmpl
            ifle 19
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.cycleTicks:J
            goto 20
      StackMap locals:
      StackMap stack: com.sun.scenario.animation.shared.FiniteClipEnvelope
        19: lconst_0
      StackMap locals: com.sun.scenario.animation.shared.FiniteClipEnvelope long long int long long
      StackMap stack: com.sun.scenario.animation.shared.FiniteClipEnvelope long
        20: putfield com.sun.scenario.animation.shared.FiniteClipEnvelope.pos:J
        21: .line 123
            lload 6 /* overallDelta */
            lload 8 /* cycleDelta */
            lsub
            lstore 6 /* overallDelta */
        22: .line 124
            invokestatic com.sun.scenario.animation.shared.AnimationAccessor.getDefault:()Lcom/sun/scenario/animation/shared/AnimationAccessor;
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.animation:Ljavafx/animation/Animation;
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.pos:J
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.cycleTicks:J
            invokevirtual com.sun.scenario.animation.shared.AnimationAccessor.playTo:(Ljavafx/animation/Animation;JJ)V
        23: .line 125
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.aborted:Z
            ifeq 26
        24: .line 151
            aload 0 /* this */
            iconst_0
            putfield com.sun.scenario.animation.shared.FiniteClipEnvelope.inTimePulse:Z
        25: .line 126
            return
        26: .line 130
      StackMap locals:
      StackMap stack:
            iload 5 /* reachedEnd */
            ifeq 27
            lload 6 /* overallDelta */
            lconst_0
            lcmp
            ifle 34
        27: .line 131
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.autoReverse:Z
            ifeq 30
        28: .line 132
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.currentRate:D
            dneg
            invokevirtual com.sun.scenario.animation.shared.FiniteClipEnvelope.setCurrentRate:(D)V
        29: .line 133
            goto 34
        30: .line 134
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.currentRate:D
            dconst_0
            dcmpl
            ifle 31
            lconst_0
            goto 32
      StackMap locals:
      StackMap stack: com.sun.scenario.animation.shared.FiniteClipEnvelope
        31: aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.cycleTicks:J
      StackMap locals: com.sun.scenario.animation.shared.FiniteClipEnvelope long long int long long
      StackMap stack: com.sun.scenario.animation.shared.FiniteClipEnvelope long
        32: putfield com.sun.scenario.animation.shared.FiniteClipEnvelope.pos:J
        33: .line 135
            invokestatic com.sun.scenario.animation.shared.AnimationAccessor.getDefault:()Lcom/sun/scenario/animation/shared/AnimationAccessor;
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.animation:Ljavafx/animation/Animation;
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.pos:J
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.cycleTicks:J
            iconst_0
            invokevirtual com.sun.scenario.animation.shared.AnimationAccessor.jumpTo:(Ljavafx/animation/Animation;JJZ)V
        34: .line 138
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.cycleTicks:J
            lstore 8 /* cycleDelta */
        35: .line 120
      StackMap locals:
      StackMap stack:
            lload 6 /* overallDelta */
            lload 8 /* cycleDelta */
            lcmp
            ifge 17
        36: .line 141
            lload 6 /* overallDelta */
            lconst_0
            lcmp
            ifle 41
            iload 5 /* reachedEnd */
            ifne 41
        37: .line 142
            aload 0 /* this */
            dup
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.pos:J
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.currentRate:D
            dconst_0
            dcmpl
            ifle 38
            lload 6 /* overallDelta */
            goto 39
      StackMap locals: com.sun.scenario.animation.shared.FiniteClipEnvelope long long int long long
      StackMap stack: com.sun.scenario.animation.shared.FiniteClipEnvelope long
        38: lload 6 /* overallDelta */
            lneg
      StackMap locals: com.sun.scenario.animation.shared.FiniteClipEnvelope long long int long long
      StackMap stack: com.sun.scenario.animation.shared.FiniteClipEnvelope long long
        39: ladd
            putfield com.sun.scenario.animation.shared.FiniteClipEnvelope.pos:J
        40: .line 143
            invokestatic com.sun.scenario.animation.shared.AnimationAccessor.getDefault:()Lcom/sun/scenario/animation/shared/AnimationAccessor;
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.animation:Ljavafx/animation/Animation;
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.pos:J
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.cycleTicks:J
            invokevirtual com.sun.scenario.animation.shared.AnimationAccessor.playTo:(Ljavafx/animation/Animation;JJ)V
        41: .line 146
      StackMap locals:
      StackMap stack:
            iload 5 /* reachedEnd */
            ifeq 47
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.aborted:Z
            ifne 47
        42: .line 147
            invokestatic com.sun.scenario.animation.shared.AnimationAccessor.getDefault:()Lcom/sun/scenario/animation/shared/AnimationAccessor;
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.animation:Ljavafx/animation/Animation;
            invokevirtual com.sun.scenario.animation.shared.AnimationAccessor.finished:(Ljavafx/animation/Animation;)V
        end local 8 // long cycleDelta
        end local 6 // long overallDelta
        end local 5 // boolean reachedEnd
        end local 3 // long oldTicks
        43: .line 150
            goto 47
      StackMap locals: com.sun.scenario.animation.shared.FiniteClipEnvelope long
      StackMap stack: java.lang.Throwable
        44: astore 10
        45: .line 151
            aload 0 /* this */
            iconst_0
            putfield com.sun.scenario.animation.shared.FiniteClipEnvelope.inTimePulse:Z
        46: .line 152
            aload 10
            athrow
        47: .line 151
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield com.sun.scenario.animation.shared.FiniteClipEnvelope.inTimePulse:Z
        48: .line 153
            return
        end local 1 // long currentTick
        end local 0 // com.sun.scenario.animation.shared.FiniteClipEnvelope this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   49     0          this  Lcom/sun/scenario/animation/shared/FiniteClipEnvelope;
            0   49     1   currentTick  J
            5   43     3      oldTicks  J
            9   43     5    reachedEnd  Z
           10   43     6  overallDelta  J
           16   43     8    cycleDelta  J
      Exception table:
        from    to  target  type
           4    11      44  any
          13    24      44  any
          26    44      44  any
    MethodParameters:
             Name  Flags
      currentTick  

  public void jumpTo(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=8, args_size=2
        start local 0 // com.sun.scenario.animation.shared.FiniteClipEnvelope this
        start local 1 // long newTicks
         0: .line 157
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.cycleTicks:J
            lconst_0
            lcmp
            ifne 2
         1: .line 158
            return
         2: .line 161
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.ticks:J
            lstore 3 /* oldTicks */
        start local 3 // long oldTicks
         3: .line 162
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.rate:D
            dconst_0
            dcmpg
            ifge 5
         4: .line 163
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.totalTicks:J
            lload 1 /* newTicks */
            lsub
            lstore 1 /* newTicks */
         5: .line 165
      StackMap locals: long
      StackMap stack:
            aload 0 /* this */
            lload 1 /* newTicks */
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.totalTicks:J
            invokestatic com.sun.scenario.animation.shared.ClipEnvelope.checkBounds:(JJ)J
            putfield com.sun.scenario.animation.shared.FiniteClipEnvelope.ticks:J
         6: .line 166
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.ticks:J
            lload 3 /* oldTicks */
            lsub
            lstore 5 /* delta */
        start local 5 // long delta
         7: .line 167
            lload 5 /* delta */
            lconst_0
            lcmp
            ifeq 31
         8: .line 168
            aload 0 /* this */
            dup
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.deltaTicks:J
            lload 5 /* delta */
            ladd
            putfield com.sun.scenario.animation.shared.FiniteClipEnvelope.deltaTicks:J
         9: .line 169
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.autoReverse:Z
            ifeq 24
        10: .line 170
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.ticks:J
            ldc 2
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.cycleTicks:J
            lmul
            lrem
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.cycleTicks:J
            lcmp
            ifge 11
            iconst_1
            goto 12
      StackMap locals: long
      StackMap stack:
        11: iconst_0
      StackMap locals:
      StackMap stack: int
        12: istore 7 /* forward */
        start local 7 // boolean forward
        13: .line 171
            iload 7 /* forward */
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.rate:D
            dconst_0
            dcmpl
            ifle 14
            iconst_1
            goto 15
      StackMap locals: com.sun.scenario.animation.shared.FiniteClipEnvelope long long long int
      StackMap stack: int
        14: iconst_0
      StackMap locals: com.sun.scenario.animation.shared.FiniteClipEnvelope long long long int
      StackMap stack: int int
        15: if_icmpne 20
        16: .line 172
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.ticks:J
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.cycleTicks:J
            lrem
            putfield com.sun.scenario.animation.shared.FiniteClipEnvelope.pos:J
        17: .line 173
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.animation:Ljavafx/animation/Animation;
            invokevirtual javafx.animation.Animation.getStatus:()Ljavafx/animation/Animation$Status;
            getstatic javafx.animation.Animation$Status.RUNNING:Ljavafx/animation/Animation$Status;
            if_acmpne 29
        18: .line 174
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.rate:D
            invokestatic java.lang.Math.abs:(D)D
            invokevirtual com.sun.scenario.animation.shared.FiniteClipEnvelope.setCurrentRate:(D)V
        19: .line 176
            goto 29
        20: .line 177
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.cycleTicks:J
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.ticks:J
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.cycleTicks:J
            lrem
            lsub
            putfield com.sun.scenario.animation.shared.FiniteClipEnvelope.pos:J
        21: .line 178
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.animation:Ljavafx/animation/Animation;
            invokevirtual javafx.animation.Animation.getStatus:()Ljavafx/animation/Animation$Status;
            getstatic javafx.animation.Animation$Status.RUNNING:Ljavafx/animation/Animation$Status;
            if_acmpne 29
        22: .line 179
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.rate:D
            invokestatic java.lang.Math.abs:(D)D
            dneg
            invokevirtual com.sun.scenario.animation.shared.FiniteClipEnvelope.setCurrentRate:(D)V
        end local 7 // boolean forward
        23: .line 182
            goto 29
        24: .line 183
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.ticks:J
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.cycleTicks:J
            lrem
            putfield com.sun.scenario.animation.shared.FiniteClipEnvelope.pos:J
        25: .line 184
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.rate:D
            dconst_0
            dcmpg
            ifge 27
        26: .line 185
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.cycleTicks:J
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.pos:J
            lsub
            putfield com.sun.scenario.animation.shared.FiniteClipEnvelope.pos:J
        27: .line 187
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.pos:J
            lconst_0
            lcmp
            ifne 29
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.ticks:J
            lconst_0
            lcmp
            ifle 29
        28: .line 188
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.cycleTicks:J
            putfield com.sun.scenario.animation.shared.FiniteClipEnvelope.pos:J
        29: .line 192
      StackMap locals:
      StackMap stack:
            invokestatic com.sun.scenario.animation.shared.AnimationAccessor.getDefault:()Lcom/sun/scenario/animation/shared/AnimationAccessor;
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.animation:Ljavafx/animation/Animation;
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.pos:J
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.FiniteClipEnvelope.cycleTicks:J
            iconst_0
            invokevirtual com.sun.scenario.animation.shared.AnimationAccessor.jumpTo:(Ljavafx/animation/Animation;JJZ)V
        30: .line 193
            aload 0 /* this */
            invokevirtual com.sun.scenario.animation.shared.FiniteClipEnvelope.abortCurrentPulse:()V
        31: .line 195
      StackMap locals:
      StackMap stack:
            return
        end local 5 // long delta
        end local 3 // long oldTicks
        end local 1 // long newTicks
        end local 0 // com.sun.scenario.animation.shared.FiniteClipEnvelope this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   32     0      this  Lcom/sun/scenario/animation/shared/FiniteClipEnvelope;
            0   32     1  newTicks  J
            3   32     3  oldTicks  J
            7   32     5     delta  J
           13   23     7   forward  Z
    MethodParameters:
          Name  Flags
      newTicks  
}
SourceFile: "FiniteClipEnvelope.java"
InnerClasses:
  public final Status = javafx.animation.Animation$Status of javafx.animation.Animation