class com.sun.scenario.animation.shared.InterpolationInterval$ObjectInterpolationInterval extends com.sun.scenario.animation.shared.InterpolationInterval
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: com.sun.scenario.animation.shared.InterpolationInterval$ObjectInterpolationInterval
  super_class: com.sun.scenario.animation.shared.InterpolationInterval
{
  private final javafx.beans.value.WritableValue target;
    descriptor: Ljavafx/beans/value/WritableValue;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private java.lang.Object leftValue;
    descriptor: Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE

  private final java.lang.Object rightValue;
    descriptor: Ljava/lang/Object;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private void <init>(javafx.animation.KeyValue, long, java.lang.Object);
    descriptor: (Ljavafx/animation/KeyValue;JLjava/lang/Object;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // com.sun.scenario.animation.shared.InterpolationInterval$ObjectInterpolationInterval this
        start local 1 // javafx.animation.KeyValue keyValue
        start local 2 // long ticks
        start local 4 // java.lang.Object leftValue
         0: .line 527
            aload 0 /* this */
            lload 2 /* ticks */
            aload 1 /* keyValue */
            invokevirtual javafx.animation.KeyValue.getInterpolator:()Ljavafx/animation/Interpolator;
            invokespecial com.sun.scenario.animation.shared.InterpolationInterval.<init>:(JLjavafx/animation/Interpolator;)V
         1: .line 528
            aload 0 /* this */
            aload 1 /* keyValue */
            invokevirtual javafx.animation.KeyValue.getTarget:()Ljavafx/beans/value/WritableValue;
            putfield com.sun.scenario.animation.shared.InterpolationInterval$ObjectInterpolationInterval.target:Ljavafx/beans/value/WritableValue;
         2: .line 529
            aload 0 /* this */
            aload 1 /* keyValue */
            invokevirtual javafx.animation.KeyValue.getEndValue:()Ljava/lang/Object;
            putfield com.sun.scenario.animation.shared.InterpolationInterval$ObjectInterpolationInterval.rightValue:Ljava/lang/Object;
         3: .line 530
            aload 0 /* this */
            aload 4 /* leftValue */
            putfield com.sun.scenario.animation.shared.InterpolationInterval$ObjectInterpolationInterval.leftValue:Ljava/lang/Object;
         4: .line 531
            return
        end local 4 // java.lang.Object leftValue
        end local 2 // long ticks
        end local 1 // javafx.animation.KeyValue keyValue
        end local 0 // com.sun.scenario.animation.shared.InterpolationInterval$ObjectInterpolationInterval this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lcom/sun/scenario/animation/shared/InterpolationInterval$ObjectInterpolationInterval;
            0    5     1   keyValue  Ljavafx/animation/KeyValue;
            0    5     2      ticks  J
            0    5     4  leftValue  Ljava/lang/Object;
    MethodParameters:
           Name  Flags
      keyValue   
      ticks      
      leftValue  

  private void <init>(javafx.animation.KeyValue, long);
    descriptor: (Ljavafx/animation/KeyValue;J)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // com.sun.scenario.animation.shared.InterpolationInterval$ObjectInterpolationInterval this
        start local 1 // javafx.animation.KeyValue keyValue
        start local 2 // long ticks
         0: .line 534
            aload 0 /* this */
            lload 2 /* ticks */
            aload 1 /* keyValue */
            invokevirtual javafx.animation.KeyValue.getInterpolator:()Ljavafx/animation/Interpolator;
            invokespecial com.sun.scenario.animation.shared.InterpolationInterval.<init>:(JLjavafx/animation/Interpolator;)V
         1: .line 535
            aload 0 /* this */
            aload 1 /* keyValue */
            invokevirtual javafx.animation.KeyValue.getTarget:()Ljavafx/beans/value/WritableValue;
            putfield com.sun.scenario.animation.shared.InterpolationInterval$ObjectInterpolationInterval.target:Ljavafx/beans/value/WritableValue;
         2: .line 536
            aload 0 /* this */
            aload 1 /* keyValue */
            invokevirtual javafx.animation.KeyValue.getEndValue:()Ljava/lang/Object;
            putfield com.sun.scenario.animation.shared.InterpolationInterval$ObjectInterpolationInterval.rightValue:Ljava/lang/Object;
         3: .line 537
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.InterpolationInterval$ObjectInterpolationInterval.target:Ljavafx/beans/value/WritableValue;
            invokeinterface javafx.beans.value.WritableValue.getValue:()Ljava/lang/Object;
            putfield com.sun.scenario.animation.shared.InterpolationInterval$ObjectInterpolationInterval.leftValue:Ljava/lang/Object;
         4: .line 538
            return
        end local 2 // long ticks
        end local 1 // javafx.animation.KeyValue keyValue
        end local 0 // com.sun.scenario.animation.shared.InterpolationInterval$ObjectInterpolationInterval this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lcom/sun/scenario/animation/shared/InterpolationInterval$ObjectInterpolationInterval;
            0    5     1  keyValue  Ljavafx/animation/KeyValue;
            0    5     2     ticks  J
    MethodParameters:
          Name  Flags
      keyValue  
      ticks     

  public void interpolate(double);
    descriptor: (D)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // com.sun.scenario.animation.shared.InterpolationInterval$ObjectInterpolationInterval this
        start local 1 // double frac
         0: .line 543
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.InterpolationInterval$ObjectInterpolationInterval.rightInterpolator:Ljavafx/animation/Interpolator;
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.InterpolationInterval$ObjectInterpolationInterval.leftValue:Ljava/lang/Object;
         1: .line 544
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.InterpolationInterval$ObjectInterpolationInterval.rightValue:Ljava/lang/Object;
            dload 1 /* frac */
         2: .line 543
            invokevirtual javafx.animation.Interpolator.interpolate:(Ljava/lang/Object;Ljava/lang/Object;D)Ljava/lang/Object;
            astore 3 /* value */
        start local 3 // java.lang.Object value
         3: .line 545
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.InterpolationInterval$ObjectInterpolationInterval.target:Ljavafx/beans/value/WritableValue;
            aload 3 /* value */
            invokeinterface javafx.beans.value.WritableValue.setValue:(Ljava/lang/Object;)V
         4: .line 546
            return
        end local 3 // java.lang.Object value
        end local 1 // double frac
        end local 0 // com.sun.scenario.animation.shared.InterpolationInterval$ObjectInterpolationInterval this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lcom/sun/scenario/animation/shared/InterpolationInterval$ObjectInterpolationInterval;
            0    5     1   frac  D
            3    5     3  value  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      frac  

  public void recalculateStartValue();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.sun.scenario.animation.shared.InterpolationInterval$ObjectInterpolationInterval this
         0: .line 550
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.scenario.animation.shared.InterpolationInterval$ObjectInterpolationInterval.target:Ljavafx/beans/value/WritableValue;
            invokeinterface javafx.beans.value.WritableValue.getValue:()Ljava/lang/Object;
            putfield com.sun.scenario.animation.shared.InterpolationInterval$ObjectInterpolationInterval.leftValue:Ljava/lang/Object;
         1: .line 551
            return
        end local 0 // com.sun.scenario.animation.shared.InterpolationInterval$ObjectInterpolationInterval this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/scenario/animation/shared/InterpolationInterval$ObjectInterpolationInterval;
}
SourceFile: "InterpolationInterval.java"
NestHost: com.sun.scenario.animation.shared.InterpolationInterval
InnerClasses:
  private ObjectInterpolationInterval = com.sun.scenario.animation.shared.InterpolationInterval$ObjectInterpolationInterval of com.sun.scenario.animation.shared.InterpolationInterval