public final class javafx.animation.FadeTransition extends javafx.animation.Transition
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: javafx.animation.FadeTransition
  super_class: javafx.animation.Transition
{
  private static final double EPSILON;
    descriptor: D
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1.0E-12

  private double start;
    descriptor: D
    flags: (0x0002) ACC_PRIVATE

  private double delta;
    descriptor: D
    flags: (0x0002) ACC_PRIVATE

  private javafx.beans.property.ObjectProperty<javafx.scene.Node> node;
    descriptor: Ljavafx/beans/property/ObjectProperty;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljavafx/beans/property/ObjectProperty<Ljavafx/scene/Node;>;

  private static final javafx.scene.Node DEFAULT_NODE;
    descriptor: Ljavafx/scene/Node;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private javafx.scene.Node cachedNode;
    descriptor: Ljavafx/scene/Node;
    flags: (0x0002) ACC_PRIVATE

  private javafx.beans.property.ObjectProperty<javafx.util.Duration> duration;
    descriptor: Ljavafx/beans/property/ObjectProperty;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljavafx/beans/property/ObjectProperty<Ljavafx/util/Duration;>;

  private static final javafx.util.Duration DEFAULT_DURATION;
    descriptor: Ljavafx/util/Duration;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private javafx.beans.property.DoubleProperty fromValue;
    descriptor: Ljavafx/beans/property/DoubleProperty;
    flags: (0x0002) ACC_PRIVATE

  private static final double DEFAULT_FROM_VALUE;
    descriptor: D
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: NaN

  private javafx.beans.property.DoubleProperty toValue;
    descriptor: Ljavafx/beans/property/DoubleProperty;
    flags: (0x0002) ACC_PRIVATE

  private static final double DEFAULT_TO_VALUE;
    descriptor: D
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: NaN

  private javafx.beans.property.DoubleProperty byValue;
    descriptor: Ljavafx/beans/property/DoubleProperty;
    flags: (0x0002) ACC_PRIVATE

  private static final double DEFAULT_BY_VALUE;
    descriptor: D
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 0.0

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 99
            aconst_null
            putstatic javafx.animation.FadeTransition.DEFAULT_NODE:Ljavafx/scene/Node;
         1: .line 139
            ldc 400.0
            invokestatic javafx.util.Duration.millis:(D)Ljavafx/util/Duration;
            putstatic javafx.animation.FadeTransition.DEFAULT_DURATION:Ljavafx/util/Duration;
         2: .line 252
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public final void setNode(javafx.scene.Node);
    descriptor: (Ljavafx/scene/Node;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javafx.animation.FadeTransition this
        start local 1 // javafx.scene.Node value
         0: .line 102
            aload 0 /* this */
            getfield javafx.animation.FadeTransition.node:Ljavafx/beans/property/ObjectProperty;
            ifnonnull 1
            aload 1 /* value */
            ifnull 2
         1: .line 103
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javafx.animation.FadeTransition.nodeProperty:()Ljavafx/beans/property/ObjectProperty;
            aload 1 /* value */
            invokevirtual javafx.beans.property.ObjectProperty.set:(Ljava/lang/Object;)V
         2: .line 105
      StackMap locals:
      StackMap stack:
            return
        end local 1 // javafx.scene.Node value
        end local 0 // javafx.animation.FadeTransition this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Ljavafx/animation/FadeTransition;
            0    3     1  value  Ljavafx/scene/Node;
    MethodParameters:
       Name  Flags
      value  

  public final javafx.scene.Node getNode();
    descriptor: ()Ljavafx/scene/Node;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javafx.animation.FadeTransition this
         0: .line 108
            aload 0 /* this */
            getfield javafx.animation.FadeTransition.node:Ljavafx/beans/property/ObjectProperty;
            ifnonnull 1
            getstatic javafx.animation.FadeTransition.DEFAULT_NODE:Ljavafx/scene/Node;
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield javafx.animation.FadeTransition.node:Ljavafx/beans/property/ObjectProperty;
            invokevirtual javafx.beans.property.ObjectProperty.get:()Ljava/lang/Object;
            checkcast javafx.scene.Node
      StackMap locals:
      StackMap stack: javafx.scene.Node
         2: areturn
        end local 0 // javafx.animation.FadeTransition this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljavafx/animation/FadeTransition;

  public final javafx.beans.property.ObjectProperty<javafx.scene.Node> nodeProperty();
    descriptor: ()Ljavafx/beans/property/ObjectProperty;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // javafx.animation.FadeTransition this
         0: .line 112
            aload 0 /* this */
            getfield javafx.animation.FadeTransition.node:Ljavafx/beans/property/ObjectProperty;
            ifnonnull 2
         1: .line 113
            aload 0 /* this */
            new javafx.beans.property.SimpleObjectProperty
            dup
            aload 0 /* this */
            ldc "node"
            getstatic javafx.animation.FadeTransition.DEFAULT_NODE:Ljavafx/scene/Node;
            invokespecial javafx.beans.property.SimpleObjectProperty.<init>:(Ljava/lang/Object;Ljava/lang/String;Ljava/lang/Object;)V
            putfield javafx.animation.FadeTransition.node:Ljavafx/beans/property/ObjectProperty;
         2: .line 115
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javafx.animation.FadeTransition.node:Ljavafx/beans/property/ObjectProperty;
            areturn
        end local 0 // javafx.animation.FadeTransition this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljavafx/animation/FadeTransition;
    Signature: ()Ljavafx/beans/property/ObjectProperty<Ljavafx/scene/Node;>;

  public final void setDuration(javafx.util.Duration);
    descriptor: (Ljavafx/util/Duration;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javafx.animation.FadeTransition this
        start local 1 // javafx.util.Duration value
         0: .line 142
            aload 0 /* this */
            getfield javafx.animation.FadeTransition.duration:Ljavafx/beans/property/ObjectProperty;
            ifnonnull 1
            getstatic javafx.animation.FadeTransition.DEFAULT_DURATION:Ljavafx/util/Duration;
            aload 1 /* value */
            invokevirtual javafx.util.Duration.equals:(Ljava/lang/Object;)Z
            ifne 2
         1: .line 143
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javafx.animation.FadeTransition.durationProperty:()Ljavafx/beans/property/ObjectProperty;
            aload 1 /* value */
            invokevirtual javafx.beans.property.ObjectProperty.set:(Ljava/lang/Object;)V
         2: .line 145
      StackMap locals:
      StackMap stack:
            return
        end local 1 // javafx.util.Duration value
        end local 0 // javafx.animation.FadeTransition this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Ljavafx/animation/FadeTransition;
            0    3     1  value  Ljavafx/util/Duration;
    MethodParameters:
       Name  Flags
      value  

  public final javafx.util.Duration getDuration();
    descriptor: ()Ljavafx/util/Duration;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javafx.animation.FadeTransition this
         0: .line 148
            aload 0 /* this */
            getfield javafx.animation.FadeTransition.duration:Ljavafx/beans/property/ObjectProperty;
            ifnonnull 1
            getstatic javafx.animation.FadeTransition.DEFAULT_DURATION:Ljavafx/util/Duration;
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield javafx.animation.FadeTransition.duration:Ljavafx/beans/property/ObjectProperty;
            invokevirtual javafx.beans.property.ObjectProperty.get:()Ljava/lang/Object;
            checkcast javafx.util.Duration
      StackMap locals:
      StackMap stack: javafx.util.Duration
         2: areturn
        end local 0 // javafx.animation.FadeTransition this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljavafx/animation/FadeTransition;

  public final javafx.beans.property.ObjectProperty<javafx.util.Duration> durationProperty();
    descriptor: ()Ljavafx/beans/property/ObjectProperty;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // javafx.animation.FadeTransition this
         0: .line 152
            aload 0 /* this */
            getfield javafx.animation.FadeTransition.duration:Ljavafx/beans/property/ObjectProperty;
            ifnonnull 2
         1: .line 153
            aload 0 /* this */
            new javafx.animation.FadeTransition$1
            dup
            aload 0 /* this */
            getstatic javafx.animation.FadeTransition.DEFAULT_DURATION:Ljavafx/util/Duration;
            invokespecial javafx.animation.FadeTransition$1.<init>:(Ljavafx/animation/FadeTransition;Ljavafx/util/Duration;)V
            putfield javafx.animation.FadeTransition.duration:Ljavafx/beans/property/ObjectProperty;
         2: .line 179
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javafx.animation.FadeTransition.duration:Ljavafx/beans/property/ObjectProperty;
            areturn
        end local 0 // javafx.animation.FadeTransition this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljavafx/animation/FadeTransition;
    Signature: ()Ljavafx/beans/property/ObjectProperty<Ljavafx/util/Duration;>;

  public final void setFromValue(double);
    descriptor: (D)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // javafx.animation.FadeTransition this
        start local 1 // double value
         0: .line 196
            aload 0 /* this */
            getfield javafx.animation.FadeTransition.fromValue:Ljavafx/beans/property/DoubleProperty;
            ifnonnull 1
            dload 1 /* value */
            invokestatic java.lang.Double.isNaN:(D)Z
            ifne 2
         1: .line 197
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javafx.animation.FadeTransition.fromValueProperty:()Ljavafx/beans/property/DoubleProperty;
            dload 1 /* value */
            invokevirtual javafx.beans.property.DoubleProperty.set:(D)V
         2: .line 199
      StackMap locals:
      StackMap stack:
            return
        end local 1 // double value
        end local 0 // javafx.animation.FadeTransition this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Ljavafx/animation/FadeTransition;
            0    3     1  value  D
    MethodParameters:
       Name  Flags
      value  

  public final double getFromValue();
    descriptor: ()D
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // javafx.animation.FadeTransition this
         0: .line 202
            aload 0 /* this */
            getfield javafx.animation.FadeTransition.fromValue:Ljavafx/beans/property/DoubleProperty;
            ifnonnull 1
            ldc NaN
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield javafx.animation.FadeTransition.fromValue:Ljavafx/beans/property/DoubleProperty;
            invokevirtual javafx.beans.property.DoubleProperty.get:()D
      StackMap locals:
      StackMap stack: double
         2: dreturn
        end local 0 // javafx.animation.FadeTransition this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljavafx/animation/FadeTransition;

  public final javafx.beans.property.DoubleProperty fromValueProperty();
    descriptor: ()Ljavafx/beans/property/DoubleProperty;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=7, locals=1, args_size=1
        start local 0 // javafx.animation.FadeTransition this
         0: .line 206
            aload 0 /* this */
            getfield javafx.animation.FadeTransition.fromValue:Ljavafx/beans/property/DoubleProperty;
            ifnonnull 2
         1: .line 207
            aload 0 /* this */
            new javafx.beans.property.SimpleDoubleProperty
            dup
            aload 0 /* this */
            ldc "fromValue"
            ldc NaN
            invokespecial javafx.beans.property.SimpleDoubleProperty.<init>:(Ljava/lang/Object;Ljava/lang/String;D)V
            putfield javafx.animation.FadeTransition.fromValue:Ljavafx/beans/property/DoubleProperty;
         2: .line 209
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javafx.animation.FadeTransition.fromValue:Ljavafx/beans/property/DoubleProperty;
            areturn
        end local 0 // javafx.animation.FadeTransition this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljavafx/animation/FadeTransition;

  public final void setToValue(double);
    descriptor: (D)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // javafx.animation.FadeTransition this
        start local 1 // double value
         0: .line 226
            aload 0 /* this */
            getfield javafx.animation.FadeTransition.toValue:Ljavafx/beans/property/DoubleProperty;
            ifnonnull 1
            dload 1 /* value */
            invokestatic java.lang.Double.isNaN:(D)Z
            ifne 2
         1: .line 227
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javafx.animation.FadeTransition.toValueProperty:()Ljavafx/beans/property/DoubleProperty;
            dload 1 /* value */
            invokevirtual javafx.beans.property.DoubleProperty.set:(D)V
         2: .line 229
      StackMap locals:
      StackMap stack:
            return
        end local 1 // double value
        end local 0 // javafx.animation.FadeTransition this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Ljavafx/animation/FadeTransition;
            0    3     1  value  D
    MethodParameters:
       Name  Flags
      value  

  public final double getToValue();
    descriptor: ()D
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // javafx.animation.FadeTransition this
         0: .line 232
            aload 0 /* this */
            getfield javafx.animation.FadeTransition.toValue:Ljavafx/beans/property/DoubleProperty;
            ifnonnull 1
            ldc NaN
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield javafx.animation.FadeTransition.toValue:Ljavafx/beans/property/DoubleProperty;
            invokevirtual javafx.beans.property.DoubleProperty.get:()D
      StackMap locals:
      StackMap stack: double
         2: dreturn
        end local 0 // javafx.animation.FadeTransition this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljavafx/animation/FadeTransition;

  public final javafx.beans.property.DoubleProperty toValueProperty();
    descriptor: ()Ljavafx/beans/property/DoubleProperty;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=7, locals=1, args_size=1
        start local 0 // javafx.animation.FadeTransition this
         0: .line 236
            aload 0 /* this */
            getfield javafx.animation.FadeTransition.toValue:Ljavafx/beans/property/DoubleProperty;
            ifnonnull 2
         1: .line 237
            aload 0 /* this */
            new javafx.beans.property.SimpleDoubleProperty
            dup
            aload 0 /* this */
            ldc "toValue"
            ldc NaN
            invokespecial javafx.beans.property.SimpleDoubleProperty.<init>:(Ljava/lang/Object;Ljava/lang/String;D)V
            putfield javafx.animation.FadeTransition.toValue:Ljavafx/beans/property/DoubleProperty;
         2: .line 239
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javafx.animation.FadeTransition.toValue:Ljavafx/beans/property/DoubleProperty;
            areturn
        end local 0 // javafx.animation.FadeTransition this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljavafx/animation/FadeTransition;

  public final void setByValue(double);
    descriptor: (D)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // javafx.animation.FadeTransition this
        start local 1 // double value
         0: .line 255
            aload 0 /* this */
            getfield javafx.animation.FadeTransition.byValue:Ljavafx/beans/property/DoubleProperty;
            ifnonnull 1
            dload 1 /* value */
            dconst_0
            dsub
            invokestatic java.lang.Math.abs:(D)D
            ldc 1.0E-12
            dcmpl
            ifle 2
         1: .line 256
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javafx.animation.FadeTransition.byValueProperty:()Ljavafx/beans/property/DoubleProperty;
            dload 1 /* value */
            invokevirtual javafx.beans.property.DoubleProperty.set:(D)V
         2: .line 258
      StackMap locals:
      StackMap stack:
            return
        end local 1 // double value
        end local 0 // javafx.animation.FadeTransition this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Ljavafx/animation/FadeTransition;
            0    3     1  value  D
    MethodParameters:
       Name  Flags
      value  

  public final double getByValue();
    descriptor: ()D
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // javafx.animation.FadeTransition this
         0: .line 261
            aload 0 /* this */
            getfield javafx.animation.FadeTransition.byValue:Ljavafx/beans/property/DoubleProperty;
            ifnonnull 1
            dconst_0
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield javafx.animation.FadeTransition.byValue:Ljavafx/beans/property/DoubleProperty;
            invokevirtual javafx.beans.property.DoubleProperty.get:()D
      StackMap locals:
      StackMap stack: double
         2: dreturn
        end local 0 // javafx.animation.FadeTransition this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljavafx/animation/FadeTransition;

  public final javafx.beans.property.DoubleProperty byValueProperty();
    descriptor: ()Ljavafx/beans/property/DoubleProperty;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=7, locals=1, args_size=1
        start local 0 // javafx.animation.FadeTransition this
         0: .line 265
            aload 0 /* this */
            getfield javafx.animation.FadeTransition.byValue:Ljavafx/beans/property/DoubleProperty;
            ifnonnull 2
         1: .line 266
            aload 0 /* this */
            new javafx.beans.property.SimpleDoubleProperty
            dup
            aload 0 /* this */
            ldc "byValue"
            dconst_0
            invokespecial javafx.beans.property.SimpleDoubleProperty.<init>:(Ljava/lang/Object;Ljava/lang/String;D)V
            putfield javafx.animation.FadeTransition.byValue:Ljavafx/beans/property/DoubleProperty;
         2: .line 268
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javafx.animation.FadeTransition.byValue:Ljavafx/beans/property/DoubleProperty;
            areturn
        end local 0 // javafx.animation.FadeTransition this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljavafx/animation/FadeTransition;

  public void <init>(javafx.util.Duration, javafx.scene.Node);
    descriptor: (Ljavafx/util/Duration;Ljavafx/scene/Node;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // javafx.animation.FadeTransition this
        start local 1 // javafx.util.Duration duration
        start local 2 // javafx.scene.Node node
         0: .line 279
            aload 0 /* this */
            invokespecial javafx.animation.Transition.<init>:()V
         1: .line 280
            aload 0 /* this */
            aload 1 /* duration */
            invokevirtual javafx.animation.FadeTransition.setDuration:(Ljavafx/util/Duration;)V
         2: .line 281
            aload 0 /* this */
            aload 2 /* node */
            invokevirtual javafx.animation.FadeTransition.setNode:(Ljavafx/scene/Node;)V
         3: .line 282
            aload 0 /* this */
            aload 1 /* duration */
            invokevirtual javafx.animation.FadeTransition.setCycleDuration:(Ljavafx/util/Duration;)V
         4: .line 283
            return
        end local 2 // javafx.scene.Node node
        end local 1 // javafx.util.Duration duration
        end local 0 // javafx.animation.FadeTransition this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Ljavafx/animation/FadeTransition;
            0    5     1  duration  Ljavafx/util/Duration;
            0    5     2      node  Ljavafx/scene/Node;
    MethodParameters:
          Name  Flags
      duration  
      node      

  public void <init>(javafx.util.Duration);
    descriptor: (Ljavafx/util/Duration;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // javafx.animation.FadeTransition this
        start local 1 // javafx.util.Duration duration
         0: .line 292
            aload 0 /* this */
            aload 1 /* duration */
            aconst_null
            invokespecial javafx.animation.FadeTransition.<init>:(Ljavafx/util/Duration;Ljavafx/scene/Node;)V
         1: .line 293
            return
        end local 1 // javafx.util.Duration duration
        end local 0 // javafx.animation.FadeTransition this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Ljavafx/animation/FadeTransition;
            0    2     1  duration  Ljavafx/util/Duration;
    MethodParameters:
          Name  Flags
      duration  

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // javafx.animation.FadeTransition this
         0: .line 299
            aload 0 /* this */
            getstatic javafx.animation.FadeTransition.DEFAULT_DURATION:Ljavafx/util/Duration;
            aconst_null
            invokespecial javafx.animation.FadeTransition.<init>:(Ljavafx/util/Duration;Ljavafx/scene/Node;)V
         1: .line 300
            return
        end local 0 // javafx.animation.FadeTransition this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljavafx/animation/FadeTransition;

  protected void interpolate(double);
    descriptor: (D)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=8, locals=5, args_size=2
        start local 0 // javafx.animation.FadeTransition this
        start local 1 // double frac
         0: .line 307
            dconst_0
         1: .line 308
            aload 0 /* this */
            getfield javafx.animation.FadeTransition.start:D
            dload 1 /* frac */
            aload 0 /* this */
            getfield javafx.animation.FadeTransition.delta:D
            dmul
            dadd
            dconst_1
            invokestatic java.lang.Math.min:(DD)D
         2: .line 307
            invokestatic java.lang.Math.max:(DD)D
            dstore 3 /* newOpacity */
        start local 3 // double newOpacity
         3: .line 309
            aload 0 /* this */
            getfield javafx.animation.FadeTransition.cachedNode:Ljavafx/scene/Node;
            dload 3 /* newOpacity */
            invokevirtual javafx.scene.Node.setOpacity:(D)V
         4: .line 310
            return
        end local 3 // double newOpacity
        end local 1 // double frac
        end local 0 // javafx.animation.FadeTransition this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Ljavafx/animation/FadeTransition;
            0    5     1        frac  D
            3    5     3  newOpacity  D
    MethodParameters:
      Name  Flags
      frac  

  private javafx.scene.Node getTargetNode();
    descriptor: ()Ljavafx/scene/Node;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // javafx.animation.FadeTransition this
         0: .line 313
            aload 0 /* this */
            invokevirtual javafx.animation.FadeTransition.getNode:()Ljavafx/scene/Node;
            astore 1 /* node */
        start local 1 // javafx.scene.Node node
         1: .line 314
            aload 1 /* node */
            ifnull 2
            aload 1 /* node */
            goto 3
      StackMap locals: javafx.scene.Node
      StackMap stack:
         2: aload 0 /* this */
            invokevirtual javafx.animation.FadeTransition.getParentTargetNode:()Ljavafx/scene/Node;
      StackMap locals:
      StackMap stack: javafx.scene.Node
         3: areturn
        end local 1 // javafx.scene.Node node
        end local 0 // javafx.animation.FadeTransition this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljavafx/animation/FadeTransition;
            1    4     1  node  Ljavafx/scene/Node;

  boolean startable(boolean);
    descriptor: (Z)Z
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javafx.animation.FadeTransition this
        start local 1 // boolean forceSync
         0: .line 319
            aload 0 /* this */
            iload 1 /* forceSync */
            invokespecial javafx.animation.Transition.startable:(Z)Z
            ifeq 3
         1: .line 320
            aload 0 /* this */
            invokevirtual javafx.animation.FadeTransition.getTargetNode:()Ljavafx/scene/Node;
            ifnonnull 2
            iload 1 /* forceSync */
            ifne 3
            aload 0 /* this */
            getfield javafx.animation.FadeTransition.cachedNode:Ljavafx/scene/Node;
            ifnull 3
         2: .line 319
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         3: iconst_0
            ireturn
        end local 1 // boolean forceSync
        end local 0 // javafx.animation.FadeTransition this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Ljavafx/animation/FadeTransition;
            0    4     1  forceSync  Z
    MethodParameters:
           Name  Flags
      forceSync  

  void sync(boolean);
    descriptor: (Z)V
    flags: (0x0000) 
    Code:
      stack=7, locals=6, args_size=2
        start local 0 // javafx.animation.FadeTransition this
        start local 1 // boolean forceSync
         0: .line 325
            aload 0 /* this */
            iload 1 /* forceSync */
            invokespecial javafx.animation.Transition.sync:(Z)V
         1: .line 326
            iload 1 /* forceSync */
            ifne 2
            aload 0 /* this */
            getfield javafx.animation.FadeTransition.cachedNode:Ljavafx/scene/Node;
            ifnonnull 19
         2: .line 327
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual javafx.animation.FadeTransition.getTargetNode:()Ljavafx/scene/Node;
            putfield javafx.animation.FadeTransition.cachedNode:Ljavafx/scene/Node;
         3: .line 328
            aload 0 /* this */
            invokevirtual javafx.animation.FadeTransition.getFromValue:()D
            dstore 2 /* _fromValue */
        start local 2 // double _fromValue
         4: .line 329
            aload 0 /* this */
            invokevirtual javafx.animation.FadeTransition.getToValue:()D
            dstore 4 /* _toValue */
        start local 4 // double _toValue
         5: .line 330
            aload 0 /* this */
            dload 2 /* _fromValue */
            invokestatic java.lang.Double.isNaN:(D)Z
            ifne 9
            dconst_0
         6: .line 331
            dload 2 /* _fromValue */
            dconst_1
            invokestatic java.lang.Math.min:(DD)D
         7: .line 330
            invokestatic java.lang.Math.max:(DD)D
         8: .line 331
            goto 10
      StackMap locals: javafx.animation.FadeTransition int double double
      StackMap stack: javafx.animation.FadeTransition
         9: aload 0 /* this */
            getfield javafx.animation.FadeTransition.cachedNode:Ljavafx/scene/Node;
            invokevirtual javafx.scene.Node.getOpacity:()D
        10: .line 330
      StackMap locals: javafx.animation.FadeTransition int double double
      StackMap stack: javafx.animation.FadeTransition double
            putfield javafx.animation.FadeTransition.start:D
        11: .line 332
            aload 0 /* this */
            dload 4 /* _toValue */
            invokestatic java.lang.Double.isNaN:(D)Z
            ifne 12
            dload 4 /* _toValue */
            aload 0 /* this */
            getfield javafx.animation.FadeTransition.start:D
            dsub
            goto 13
      StackMap locals:
      StackMap stack: javafx.animation.FadeTransition
        12: aload 0 /* this */
            invokevirtual javafx.animation.FadeTransition.getByValue:()D
      StackMap locals: javafx.animation.FadeTransition int double double
      StackMap stack: javafx.animation.FadeTransition double
        13: putfield javafx.animation.FadeTransition.delta:D
        14: .line 333
            aload 0 /* this */
            getfield javafx.animation.FadeTransition.start:D
            aload 0 /* this */
            getfield javafx.animation.FadeTransition.delta:D
            dadd
            dconst_1
            dcmpl
            ifle 17
        15: .line 334
            aload 0 /* this */
            dconst_1
            aload 0 /* this */
            getfield javafx.animation.FadeTransition.start:D
            dsub
            putfield javafx.animation.FadeTransition.delta:D
        16: .line 335
            goto 19
      StackMap locals:
      StackMap stack:
        17: aload 0 /* this */
            getfield javafx.animation.FadeTransition.start:D
            aload 0 /* this */
            getfield javafx.animation.FadeTransition.delta:D
            dadd
            dconst_0
            dcmpg
            ifge 19
        18: .line 336
            aload 0 /* this */
            aload 0 /* this */
            getfield javafx.animation.FadeTransition.start:D
            dneg
            putfield javafx.animation.FadeTransition.delta:D
        end local 4 // double _toValue
        end local 2 // double _fromValue
        19: .line 339
      StackMap locals:
      StackMap stack:
            return
        end local 1 // boolean forceSync
        end local 0 // javafx.animation.FadeTransition this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   20     0        this  Ljavafx/animation/FadeTransition;
            0   20     1   forceSync  Z
            4   19     2  _fromValue  D
            5   19     4    _toValue  D
    MethodParameters:
           Name  Flags
      forceSync  
}
SourceFile: "FadeTransition.java"
NestMembers:
  javafx.animation.FadeTransition$1
InnerClasses:
  javafx.animation.FadeTransition$1