public class javafx.scene.effect.BoxBlur extends javafx.scene.effect.Effect
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: javafx.scene.effect.BoxBlur
  super_class: javafx.scene.effect.Effect
{
  private javafx.beans.property.ObjectProperty<javafx.scene.effect.Effect> input;
    descriptor: Ljavafx/beans/property/ObjectProperty;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljavafx/beans/property/ObjectProperty<Ljavafx/scene/effect/Effect;>;

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

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

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

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javafx.scene.effect.BoxBlur this
         0: .line 76
            aload 0 /* this */
            invokespecial javafx.scene.effect.Effect.<init>:()V
            return
        end local 0 // javafx.scene.effect.BoxBlur this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavafx/scene/effect/BoxBlur;

  public void <init>(double, double, int);
    descriptor: (DDI)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=4
        start local 0 // javafx.scene.effect.BoxBlur this
        start local 1 // double width
        start local 3 // double height
        start local 5 // int iterations
         0: .line 86
            aload 0 /* this */
            invokespecial javafx.scene.effect.Effect.<init>:()V
         1: .line 87
            aload 0 /* this */
            dload 1 /* width */
            invokevirtual javafx.scene.effect.BoxBlur.setWidth:(D)V
         2: .line 88
            aload 0 /* this */
            dload 3 /* height */
            invokevirtual javafx.scene.effect.BoxBlur.setHeight:(D)V
         3: .line 89
            aload 0 /* this */
            iload 5 /* iterations */
            invokevirtual javafx.scene.effect.BoxBlur.setIterations:(I)V
         4: .line 90
            return
        end local 5 // int iterations
        end local 3 // double height
        end local 1 // double width
        end local 0 // javafx.scene.effect.BoxBlur this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Ljavafx/scene/effect/BoxBlur;
            0    5     1       width  D
            0    5     3      height  D
            0    5     5  iterations  I
    MethodParameters:
            Name  Flags
      width       
      height      
      iterations  

  com.sun.scenario.effect.BoxBlur createPeer();
    descriptor: ()Lcom/sun/scenario/effect/BoxBlur;
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // javafx.scene.effect.BoxBlur this
         0: .line 94
            new com.sun.scenario.effect.BoxBlur
            dup
            invokespecial com.sun.scenario.effect.BoxBlur.<init>:()V
            areturn
        end local 0 // javafx.scene.effect.BoxBlur this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavafx/scene/effect/BoxBlur;

  public final void setInput(javafx.scene.effect.Effect);
    descriptor: (Ljavafx/scene/effect/Effect;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javafx.scene.effect.BoxBlur this
        start local 1 // javafx.scene.effect.Effect value
         0: .line 107
            aload 0 /* this */
            invokevirtual javafx.scene.effect.BoxBlur.inputProperty:()Ljavafx/beans/property/ObjectProperty;
            aload 1 /* value */
            invokevirtual javafx.beans.property.ObjectProperty.set:(Ljava/lang/Object;)V
         1: .line 108
            return
        end local 1 // javafx.scene.effect.Effect value
        end local 0 // javafx.scene.effect.BoxBlur this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Ljavafx/scene/effect/BoxBlur;
            0    2     1  value  Ljavafx/scene/effect/Effect;
    MethodParameters:
       Name  Flags
      value  

  public final javafx.scene.effect.Effect getInput();
    descriptor: ()Ljavafx/scene/effect/Effect;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javafx.scene.effect.BoxBlur this
         0: .line 111
            aload 0 /* this */
            getfield javafx.scene.effect.BoxBlur.input:Ljavafx/beans/property/ObjectProperty;
            ifnonnull 1
            aconst_null
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield javafx.scene.effect.BoxBlur.input:Ljavafx/beans/property/ObjectProperty;
            invokevirtual javafx.beans.property.ObjectProperty.get:()Ljava/lang/Object;
            checkcast javafx.scene.effect.Effect
      StackMap locals:
      StackMap stack: javafx.scene.effect.Effect
         2: areturn
        end local 0 // javafx.scene.effect.BoxBlur this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljavafx/scene/effect/BoxBlur;

  public final javafx.beans.property.ObjectProperty<javafx.scene.effect.Effect> inputProperty();
    descriptor: ()Ljavafx/beans/property/ObjectProperty;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // javafx.scene.effect.BoxBlur this
         0: .line 115
            aload 0 /* this */
            getfield javafx.scene.effect.BoxBlur.input:Ljavafx/beans/property/ObjectProperty;
            ifnonnull 2
         1: .line 116
            aload 0 /* this */
            new javafx.scene.effect.Effect$EffectInputProperty
            dup
            aload 0 /* this */
            ldc "input"
            invokespecial javafx.scene.effect.Effect$EffectInputProperty.<init>:(Ljavafx/scene/effect/Effect;Ljava/lang/String;)V
            putfield javafx.scene.effect.BoxBlur.input:Ljavafx/beans/property/ObjectProperty;
         2: .line 118
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javafx.scene.effect.BoxBlur.input:Ljavafx/beans/property/ObjectProperty;
            areturn
        end local 0 // javafx.scene.effect.BoxBlur this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljavafx/scene/effect/BoxBlur;
    Signature: ()Ljavafx/beans/property/ObjectProperty<Ljavafx/scene/effect/Effect;>;

  boolean checkChainContains(javafx.scene.effect.Effect);
    descriptor: (Ljavafx/scene/effect/Effect;)Z
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // javafx.scene.effect.BoxBlur this
        start local 1 // javafx.scene.effect.Effect e
         0: .line 123
            aload 0 /* this */
            invokevirtual javafx.scene.effect.BoxBlur.getInput:()Ljavafx/scene/effect/Effect;
            astore 2 /* localInput */
        start local 2 // javafx.scene.effect.Effect localInput
         1: .line 124
            aload 2 /* localInput */
            ifnonnull 3
         2: .line 125
            iconst_0
            ireturn
         3: .line 126
      StackMap locals: javafx.scene.effect.Effect
      StackMap stack:
            aload 2 /* localInput */
            aload 1 /* e */
            if_acmpne 5
         4: .line 127
            iconst_1
            ireturn
         5: .line 128
      StackMap locals:
      StackMap stack:
            aload 2 /* localInput */
            aload 1 /* e */
            invokevirtual javafx.scene.effect.Effect.checkChainContains:(Ljavafx/scene/effect/Effect;)Z
            ireturn
        end local 2 // javafx.scene.effect.Effect localInput
        end local 1 // javafx.scene.effect.Effect e
        end local 0 // javafx.scene.effect.BoxBlur this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    6     0        this  Ljavafx/scene/effect/BoxBlur;
            0    6     1           e  Ljavafx/scene/effect/Effect;
            1    6     2  localInput  Ljavafx/scene/effect/Effect;
    MethodParameters:
      Name  Flags
      e     

  public final void setWidth(double);
    descriptor: (D)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // javafx.scene.effect.BoxBlur this
        start local 1 // double value
         0: .line 150
            aload 0 /* this */
            invokevirtual javafx.scene.effect.BoxBlur.widthProperty:()Ljavafx/beans/property/DoubleProperty;
            dload 1 /* value */
            invokevirtual javafx.beans.property.DoubleProperty.set:(D)V
         1: .line 151
            return
        end local 1 // double value
        end local 0 // javafx.scene.effect.BoxBlur this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Ljavafx/scene/effect/BoxBlur;
            0    2     1  value  D
    MethodParameters:
       Name  Flags
      value  

  public final double getWidth();
    descriptor: ()D
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // javafx.scene.effect.BoxBlur this
         0: .line 154
            aload 0 /* this */
            getfield javafx.scene.effect.BoxBlur.width:Ljavafx/beans/property/DoubleProperty;
            ifnonnull 1
            ldc 5.0
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield javafx.scene.effect.BoxBlur.width:Ljavafx/beans/property/DoubleProperty;
            invokevirtual javafx.beans.property.DoubleProperty.get:()D
      StackMap locals:
      StackMap stack: double
         2: dreturn
        end local 0 // javafx.scene.effect.BoxBlur this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljavafx/scene/effect/BoxBlur;

  public final javafx.beans.property.DoubleProperty widthProperty();
    descriptor: ()Ljavafx/beans/property/DoubleProperty;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // javafx.scene.effect.BoxBlur this
         0: .line 158
            aload 0 /* this */
            getfield javafx.scene.effect.BoxBlur.width:Ljavafx/beans/property/DoubleProperty;
            ifnonnull 2
         1: .line 159
            aload 0 /* this */
            new javafx.scene.effect.BoxBlur$1
            dup
            aload 0 /* this */
            ldc 5.0
            invokespecial javafx.scene.effect.BoxBlur$1.<init>:(Ljavafx/scene/effect/BoxBlur;D)V
            putfield javafx.scene.effect.BoxBlur.width:Ljavafx/beans/property/DoubleProperty;
         2: .line 178
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javafx.scene.effect.BoxBlur.width:Ljavafx/beans/property/DoubleProperty;
            areturn
        end local 0 // javafx.scene.effect.BoxBlur this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljavafx/scene/effect/BoxBlur;

  public final void setHeight(double);
    descriptor: (D)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // javafx.scene.effect.BoxBlur this
        start local 1 // double value
         0: .line 200
            aload 0 /* this */
            invokevirtual javafx.scene.effect.BoxBlur.heightProperty:()Ljavafx/beans/property/DoubleProperty;
            dload 1 /* value */
            invokevirtual javafx.beans.property.DoubleProperty.set:(D)V
         1: .line 201
            return
        end local 1 // double value
        end local 0 // javafx.scene.effect.BoxBlur this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Ljavafx/scene/effect/BoxBlur;
            0    2     1  value  D
    MethodParameters:
       Name  Flags
      value  

  public final double getHeight();
    descriptor: ()D
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // javafx.scene.effect.BoxBlur this
         0: .line 204
            aload 0 /* this */
            getfield javafx.scene.effect.BoxBlur.height:Ljavafx/beans/property/DoubleProperty;
            ifnonnull 1
            ldc 5.0
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield javafx.scene.effect.BoxBlur.height:Ljavafx/beans/property/DoubleProperty;
            invokevirtual javafx.beans.property.DoubleProperty.get:()D
      StackMap locals:
      StackMap stack: double
         2: dreturn
        end local 0 // javafx.scene.effect.BoxBlur this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljavafx/scene/effect/BoxBlur;

  public final javafx.beans.property.DoubleProperty heightProperty();
    descriptor: ()Ljavafx/beans/property/DoubleProperty;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // javafx.scene.effect.BoxBlur this
         0: .line 208
            aload 0 /* this */
            getfield javafx.scene.effect.BoxBlur.height:Ljavafx/beans/property/DoubleProperty;
            ifnonnull 2
         1: .line 209
            aload 0 /* this */
            new javafx.scene.effect.BoxBlur$2
            dup
            aload 0 /* this */
            ldc 5.0
            invokespecial javafx.scene.effect.BoxBlur$2.<init>:(Ljavafx/scene/effect/BoxBlur;D)V
            putfield javafx.scene.effect.BoxBlur.height:Ljavafx/beans/property/DoubleProperty;
         2: .line 228
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javafx.scene.effect.BoxBlur.height:Ljavafx/beans/property/DoubleProperty;
            areturn
        end local 0 // javafx.scene.effect.BoxBlur this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljavafx/scene/effect/BoxBlur;

  public final void setIterations(int);
    descriptor: (I)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javafx.scene.effect.BoxBlur this
        start local 1 // int value
         0: .line 248
            aload 0 /* this */
            invokevirtual javafx.scene.effect.BoxBlur.iterationsProperty:()Ljavafx/beans/property/IntegerProperty;
            iload 1 /* value */
            invokevirtual javafx.beans.property.IntegerProperty.set:(I)V
         1: .line 249
            return
        end local 1 // int value
        end local 0 // javafx.scene.effect.BoxBlur this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Ljavafx/scene/effect/BoxBlur;
            0    2     1  value  I
    MethodParameters:
       Name  Flags
      value  

  public final int getIterations();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javafx.scene.effect.BoxBlur this
         0: .line 252
            aload 0 /* this */
            getfield javafx.scene.effect.BoxBlur.iterations:Ljavafx/beans/property/IntegerProperty;
            ifnonnull 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield javafx.scene.effect.BoxBlur.iterations:Ljavafx/beans/property/IntegerProperty;
            invokevirtual javafx.beans.property.IntegerProperty.get:()I
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 0 // javafx.scene.effect.BoxBlur this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljavafx/scene/effect/BoxBlur;

  public final javafx.beans.property.IntegerProperty iterationsProperty();
    descriptor: ()Ljavafx/beans/property/IntegerProperty;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // javafx.scene.effect.BoxBlur this
         0: .line 256
            aload 0 /* this */
            getfield javafx.scene.effect.BoxBlur.iterations:Ljavafx/beans/property/IntegerProperty;
            ifnonnull 2
         1: .line 257
            aload 0 /* this */
            new javafx.scene.effect.BoxBlur$3
            dup
            aload 0 /* this */
            iconst_1
            invokespecial javafx.scene.effect.BoxBlur$3.<init>:(Ljavafx/scene/effect/BoxBlur;I)V
            putfield javafx.scene.effect.BoxBlur.iterations:Ljavafx/beans/property/IntegerProperty;
         2: .line 276
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javafx.scene.effect.BoxBlur.iterations:Ljavafx/beans/property/IntegerProperty;
            areturn
        end local 0 // javafx.scene.effect.BoxBlur this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljavafx/scene/effect/BoxBlur;

  private int getClampedWidth();
    descriptor: ()I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // javafx.scene.effect.BoxBlur this
         0: .line 280
            iconst_0
            aload 0 /* this */
            invokevirtual javafx.scene.effect.BoxBlur.getWidth:()D
            d2i
            sipush 255
            invokestatic com.sun.javafx.util.Utils.clamp:(III)I
            ireturn
        end local 0 // javafx.scene.effect.BoxBlur this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavafx/scene/effect/BoxBlur;

  private int getClampedHeight();
    descriptor: ()I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // javafx.scene.effect.BoxBlur this
         0: .line 284
            iconst_0
            aload 0 /* this */
            invokevirtual javafx.scene.effect.BoxBlur.getHeight:()D
            d2i
            sipush 255
            invokestatic com.sun.javafx.util.Utils.clamp:(III)I
            ireturn
        end local 0 // javafx.scene.effect.BoxBlur this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavafx/scene/effect/BoxBlur;

  private int getClampedIterations();
    descriptor: ()I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // javafx.scene.effect.BoxBlur this
         0: .line 288
            iconst_0
            aload 0 /* this */
            invokevirtual javafx.scene.effect.BoxBlur.getIterations:()I
            iconst_3
            invokestatic com.sun.javafx.util.Utils.clamp:(III)I
            ireturn
        end local 0 // javafx.scene.effect.BoxBlur this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavafx/scene/effect/BoxBlur;

  void update();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // javafx.scene.effect.BoxBlur this
         0: .line 293
            aload 0 /* this */
            invokevirtual javafx.scene.effect.BoxBlur.getInput:()Ljavafx/scene/effect/Effect;
            astore 1 /* localInput */
        start local 1 // javafx.scene.effect.Effect localInput
         1: .line 294
            aload 1 /* localInput */
            ifnull 3
         2: .line 295
            aload 1 /* localInput */
            invokevirtual javafx.scene.effect.Effect.sync:()V
         3: .line 299
      StackMap locals: javafx.scene.effect.Effect
      StackMap stack:
            aload 0 /* this */
            invokevirtual javafx.scene.effect.BoxBlur.getPeer:()Lcom/sun/scenario/effect/Effect;
            checkcast com.sun.scenario.effect.BoxBlur
         4: .line 298
            astore 2 /* peer */
        start local 2 // com.sun.scenario.effect.BoxBlur peer
         5: .line 300
            aload 2 /* peer */
            aload 1 /* localInput */
            ifnonnull 6
            aconst_null
            goto 7
      StackMap locals: javafx.scene.effect.BoxBlur javafx.scene.effect.Effect com.sun.scenario.effect.BoxBlur
      StackMap stack: com.sun.scenario.effect.BoxBlur
         6: aload 1 /* localInput */
            invokevirtual javafx.scene.effect.Effect.getPeer:()Lcom/sun/scenario/effect/Effect;
      StackMap locals: javafx.scene.effect.BoxBlur javafx.scene.effect.Effect com.sun.scenario.effect.BoxBlur
      StackMap stack: com.sun.scenario.effect.BoxBlur com.sun.scenario.effect.Effect
         7: invokevirtual com.sun.scenario.effect.BoxBlur.setInput:(Lcom/sun/scenario/effect/Effect;)V
         8: .line 301
            aload 2 /* peer */
            aload 0 /* this */
            invokevirtual javafx.scene.effect.BoxBlur.getClampedWidth:()I
            invokevirtual com.sun.scenario.effect.BoxBlur.setHorizontalSize:(I)V
         9: .line 302
            aload 2 /* peer */
            aload 0 /* this */
            invokevirtual javafx.scene.effect.BoxBlur.getClampedHeight:()I
            invokevirtual com.sun.scenario.effect.BoxBlur.setVerticalSize:(I)V
        10: .line 303
            aload 2 /* peer */
            aload 0 /* this */
            invokevirtual javafx.scene.effect.BoxBlur.getClampedIterations:()I
            invokevirtual com.sun.scenario.effect.BoxBlur.setPasses:(I)V
        11: .line 304
            return
        end local 2 // com.sun.scenario.effect.BoxBlur peer
        end local 1 // javafx.scene.effect.Effect localInput
        end local 0 // javafx.scene.effect.BoxBlur this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   12     0        this  Ljavafx/scene/effect/BoxBlur;
            1   12     1  localInput  Ljavafx/scene/effect/Effect;
            5   12     2        peer  Lcom/sun/scenario/effect/BoxBlur;

  com.sun.javafx.geom.BaseBounds getBounds(com.sun.javafx.geom.BaseBounds, com.sun.javafx.geom.transform.BaseTransform, javafx.scene.Node, com.sun.javafx.scene.BoundsAccessor);
    descriptor: (Lcom/sun/javafx/geom/BaseBounds;Lcom/sun/javafx/geom/transform/BaseTransform;Ljavafx/scene/Node;Lcom/sun/javafx/scene/BoundsAccessor;)Lcom/sun/javafx/geom/BaseBounds;
    flags: (0x0000) 
    Code:
      stack=5, locals=8, args_size=5
        start local 0 // javafx.scene.effect.BoxBlur this
        start local 1 // com.sun.javafx.geom.BaseBounds bounds
        start local 2 // com.sun.javafx.geom.transform.BaseTransform tx
        start local 3 // javafx.scene.Node node
        start local 4 // com.sun.javafx.scene.BoundsAccessor boundsAccessor
         0: .line 311
            aload 1 /* bounds */
         1: .line 312
            getstatic com.sun.javafx.geom.transform.BaseTransform.IDENTITY_TRANSFORM:Lcom/sun/javafx/geom/transform/BaseTransform;
         2: .line 313
            aload 3 /* node */
            aload 4 /* boundsAccessor */
         3: .line 314
            aload 0 /* this */
            invokevirtual javafx.scene.effect.BoxBlur.getInput:()Ljavafx/scene/effect/Effect;
         4: .line 311
            invokestatic javafx.scene.effect.BoxBlur.getInputBounds:(Lcom/sun/javafx/geom/BaseBounds;Lcom/sun/javafx/geom/transform/BaseTransform;Ljavafx/scene/Node;Lcom/sun/javafx/scene/BoundsAccessor;Ljavafx/scene/effect/Effect;)Lcom/sun/javafx/geom/BaseBounds;
            astore 1 /* bounds */
         5: .line 316
            aload 0 /* this */
            invokevirtual javafx.scene.effect.BoxBlur.getClampedIterations:()I
            istore 5 /* localIterations */
        start local 5 // int localIterations
         6: .line 318
            aload 0 /* this */
            invokevirtual javafx.scene.effect.BoxBlur.getClampedWidth:()I
            i2f
            iload 5 /* localIterations */
            invokestatic javafx.scene.effect.BoxBlur.getKernelSize:(FI)I
            istore 6 /* hgrow */
        start local 6 // int hgrow
         7: .line 319
            aload 0 /* this */
            invokevirtual javafx.scene.effect.BoxBlur.getClampedHeight:()I
            i2f
            iload 5 /* localIterations */
            invokestatic javafx.scene.effect.BoxBlur.getKernelSize:(FI)I
            istore 7 /* vgrow */
        start local 7 // int vgrow
         8: .line 321
            aload 1 /* bounds */
            iload 6 /* hgrow */
            i2f
            iload 7 /* vgrow */
            i2f
            fconst_0
            invokevirtual com.sun.javafx.geom.BaseBounds.deriveWithPadding:(FFF)Lcom/sun/javafx/geom/BaseBounds;
            astore 1 /* bounds */
         9: .line 323
            aload 2 /* tx */
            aload 1 /* bounds */
            invokestatic javafx.scene.effect.BoxBlur.transformBounds:(Lcom/sun/javafx/geom/transform/BaseTransform;Lcom/sun/javafx/geom/BaseBounds;)Lcom/sun/javafx/geom/BaseBounds;
            areturn
        end local 7 // int vgrow
        end local 6 // int hgrow
        end local 5 // int localIterations
        end local 4 // com.sun.javafx.scene.BoundsAccessor boundsAccessor
        end local 3 // javafx.scene.Node node
        end local 2 // com.sun.javafx.geom.transform.BaseTransform tx
        end local 1 // com.sun.javafx.geom.BaseBounds bounds
        end local 0 // javafx.scene.effect.BoxBlur this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   10     0             this  Ljavafx/scene/effect/BoxBlur;
            0   10     1           bounds  Lcom/sun/javafx/geom/BaseBounds;
            0   10     2               tx  Lcom/sun/javafx/geom/transform/BaseTransform;
            0   10     3             node  Ljavafx/scene/Node;
            0   10     4   boundsAccessor  Lcom/sun/javafx/scene/BoundsAccessor;
            6   10     5  localIterations  I
            7   10     6            hgrow  I
            8   10     7            vgrow  I
    MethodParameters:
                Name  Flags
      bounds          
      tx              
      node            
      boundsAccessor  

  javafx.scene.effect.Effect copy();
    descriptor: ()Ljavafx/scene/effect/Effect;
    flags: (0x0000) 
    Code:
      stack=7, locals=2, args_size=1
        start local 0 // javafx.scene.effect.BoxBlur this
         0: .line 328
            new javafx.scene.effect.BoxBlur
            dup
            aload 0 /* this */
            invokevirtual javafx.scene.effect.BoxBlur.getWidth:()D
            aload 0 /* this */
            invokevirtual javafx.scene.effect.BoxBlur.getHeight:()D
            aload 0 /* this */
            invokevirtual javafx.scene.effect.BoxBlur.getIterations:()I
            invokespecial javafx.scene.effect.BoxBlur.<init>:(DDI)V
            astore 1 /* bb */
        start local 1 // javafx.scene.effect.BoxBlur bb
         1: .line 329
            aload 1 /* bb */
            aload 0 /* this */
            invokevirtual javafx.scene.effect.BoxBlur.getInput:()Ljavafx/scene/effect/Effect;
            invokevirtual javafx.scene.effect.BoxBlur.setInput:(Ljavafx/scene/effect/Effect;)V
         2: .line 330
            aload 1 /* bb */
            areturn
        end local 1 // javafx.scene.effect.BoxBlur bb
        end local 0 // javafx.scene.effect.BoxBlur this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljavafx/scene/effect/BoxBlur;
            1    3     1    bb  Ljavafx/scene/effect/BoxBlur;

  com.sun.scenario.effect.Effect createPeer();
    descriptor: ()Lcom/sun/scenario/effect/Effect;
    flags: (0x1040) ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual javafx.scene.effect.BoxBlur.createPeer:()Lcom/sun/scenario/effect/BoxBlur;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "BoxBlur.java"
NestMembers:
  javafx.scene.effect.BoxBlur$1  javafx.scene.effect.BoxBlur$2  javafx.scene.effect.BoxBlur$3
InnerClasses:
  javafx.scene.effect.BoxBlur$1
  javafx.scene.effect.BoxBlur$2
  javafx.scene.effect.BoxBlur$3
  EffectInputProperty = javafx.scene.effect.Effect$EffectInputProperty of javafx.scene.effect.Effect