public class com.sun.scenario.effect.impl.state.BoxBlurState extends com.sun.scenario.effect.impl.state.HVSeparableKernel
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.sun.scenario.effect.impl.state.BoxBlurState
  super_class: com.sun.scenario.effect.impl.state.HVSeparableKernel
{
  private int hsize;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

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

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

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.scenario.effect.impl.state.BoxBlurState this
         0: .line 35
            aload 0 /* this */
            invokespecial com.sun.scenario.effect.impl.state.HVSeparableKernel.<init>:()V
            return
        end local 0 // com.sun.scenario.effect.impl.state.BoxBlurState this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/scenario/effect/impl/state/BoxBlurState;

  public int getHsize();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.scenario.effect.impl.state.BoxBlurState this
         0: .line 41
            aload 0 /* this */
            getfield com.sun.scenario.effect.impl.state.BoxBlurState.hsize:I
            ireturn
        end local 0 // com.sun.scenario.effect.impl.state.BoxBlurState this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/scenario/effect/impl/state/BoxBlurState;

  public void setHsize(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.sun.scenario.effect.impl.state.BoxBlurState this
        start local 1 // int hsize
         0: .line 45
            iload 1 /* hsize */
            iflt 1
            iload 1 /* hsize */
            sipush 255
            if_icmple 2
         1: .line 46
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "Blur size must be in the range [0,255]"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 48
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* hsize */
            putfield com.sun.scenario.effect.impl.state.BoxBlurState.hsize:I
         3: .line 49
            return
        end local 1 // int hsize
        end local 0 // com.sun.scenario.effect.impl.state.BoxBlurState this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lcom/sun/scenario/effect/impl/state/BoxBlurState;
            0    4     1  hsize  I
    MethodParameters:
       Name  Flags
      hsize  

  public int getVsize();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.scenario.effect.impl.state.BoxBlurState this
         0: .line 52
            aload 0 /* this */
            getfield com.sun.scenario.effect.impl.state.BoxBlurState.vsize:I
            ireturn
        end local 0 // com.sun.scenario.effect.impl.state.BoxBlurState this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/scenario/effect/impl/state/BoxBlurState;

  public void setVsize(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.sun.scenario.effect.impl.state.BoxBlurState this
        start local 1 // int vsize
         0: .line 56
            iload 1 /* vsize */
            iflt 1
            iload 1 /* vsize */
            sipush 255
            if_icmple 2
         1: .line 57
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "Blur size must be in the range [0,255]"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 59
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* vsize */
            putfield com.sun.scenario.effect.impl.state.BoxBlurState.vsize:I
         3: .line 60
            return
        end local 1 // int vsize
        end local 0 // com.sun.scenario.effect.impl.state.BoxBlurState this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lcom/sun/scenario/effect/impl/state/BoxBlurState;
            0    4     1  vsize  I
    MethodParameters:
       Name  Flags
      vsize  

  public int getBlurPasses();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.scenario.effect.impl.state.BoxBlurState this
         0: .line 63
            aload 0 /* this */
            getfield com.sun.scenario.effect.impl.state.BoxBlurState.blurPasses:I
            ireturn
        end local 0 // com.sun.scenario.effect.impl.state.BoxBlurState this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/scenario/effect/impl/state/BoxBlurState;

  public void setBlurPasses(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.sun.scenario.effect.impl.state.BoxBlurState this
        start local 1 // int blurPasses
         0: .line 67
            iload 1 /* blurPasses */
            iflt 1
            iload 1 /* blurPasses */
            iconst_3
            if_icmple 2
         1: .line 68
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "Number of passes must be in the range [0,3]"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 70
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* blurPasses */
            putfield com.sun.scenario.effect.impl.state.BoxBlurState.blurPasses:I
         3: .line 71
            return
        end local 1 // int blurPasses
        end local 0 // com.sun.scenario.effect.impl.state.BoxBlurState this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0        this  Lcom/sun/scenario/effect/impl/state/BoxBlurState;
            0    4     1  blurPasses  I
    MethodParameters:
            Name  Flags
      blurPasses  

  public com.sun.scenario.effect.Color4f getShadowColor();
    descriptor: ()Lcom/sun/scenario/effect/Color4f;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.scenario.effect.impl.state.BoxBlurState this
         0: .line 74
            aconst_null
            areturn
        end local 0 // com.sun.scenario.effect.impl.state.BoxBlurState this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/scenario/effect/impl/state/BoxBlurState;

  public float getSpread();
    descriptor: ()F
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.scenario.effect.impl.state.BoxBlurState this
         0: .line 78
            fconst_0
            freturn
        end local 0 // com.sun.scenario.effect.impl.state.BoxBlurState this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/scenario/effect/impl/state/BoxBlurState;

  public com.sun.scenario.effect.impl.state.LinearConvolveRenderState getRenderState(com.sun.javafx.geom.transform.BaseTransform);
    descriptor: (Lcom/sun/javafx/geom/transform/BaseTransform;)Lcom/sun/scenario/effect/impl/state/LinearConvolveRenderState;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=9, locals=2, args_size=2
        start local 0 // com.sun.scenario.effect.impl.state.BoxBlurState this
        start local 1 // com.sun.javafx.geom.transform.BaseTransform filtertx
         0: .line 83
            new com.sun.scenario.effect.impl.state.BoxRenderState
            dup
            aload 0 /* this */
            getfield com.sun.scenario.effect.impl.state.BoxBlurState.hsize:I
            i2f
            aload 0 /* this */
            getfield com.sun.scenario.effect.impl.state.BoxBlurState.vsize:I
            i2f
            aload 0 /* this */
            getfield com.sun.scenario.effect.impl.state.BoxBlurState.blurPasses:I
            aload 0 /* this */
            invokevirtual com.sun.scenario.effect.impl.state.BoxBlurState.getSpread:()F
         1: .line 84
            aload 0 /* this */
            invokevirtual com.sun.scenario.effect.impl.state.BoxBlurState.isShadow:()Z
            aload 0 /* this */
            invokevirtual com.sun.scenario.effect.impl.state.BoxBlurState.getShadowColor:()Lcom/sun/scenario/effect/Color4f;
            aload 1 /* filtertx */
         2: .line 83
            invokespecial com.sun.scenario.effect.impl.state.BoxRenderState.<init>:(FFIFZLcom/sun/scenario/effect/Color4f;Lcom/sun/javafx/geom/transform/BaseTransform;)V
            areturn
        end local 1 // com.sun.javafx.geom.transform.BaseTransform filtertx
        end local 0 // com.sun.scenario.effect.impl.state.BoxBlurState this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lcom/sun/scenario/effect/impl/state/BoxBlurState;
            0    3     1  filtertx  Lcom/sun/javafx/geom/transform/BaseTransform;
    MethodParameters:
          Name  Flags
      filtertx  

  public boolean isNop();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.sun.scenario.effect.impl.state.BoxBlurState this
         0: .line 89
            aload 0 /* this */
            getfield com.sun.scenario.effect.impl.state.BoxBlurState.blurPasses:I
            ifeq 2
            aload 0 /* this */
            getfield com.sun.scenario.effect.impl.state.BoxBlurState.hsize:I
            iconst_1
            if_icmpgt 1
            aload 0 /* this */
            getfield com.sun.scenario.effect.impl.state.BoxBlurState.vsize:I
            iconst_1
            if_icmple 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         2: iconst_1
            ireturn
        end local 0 // com.sun.scenario.effect.impl.state.BoxBlurState this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/sun/scenario/effect/impl/state/BoxBlurState;

  public int getKernelSize(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // com.sun.scenario.effect.impl.state.BoxBlurState this
        start local 1 // int pass
         0: .line 94
            iload 1 /* pass */
            ifne 1
            aload 0 /* this */
            getfield com.sun.scenario.effect.impl.state.BoxBlurState.hsize:I
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield com.sun.scenario.effect.impl.state.BoxBlurState.vsize:I
      StackMap locals:
      StackMap stack: int
         2: istore 2 /* ksize */
        start local 2 // int ksize
         3: .line 95
            iload 2 /* ksize */
            iconst_1
            if_icmpge 4
            iconst_1
            istore 2 /* ksize */
         4: .line 96
      StackMap locals: int
      StackMap stack:
            iload 2 /* ksize */
            iconst_1
            isub
            aload 0 /* this */
            getfield com.sun.scenario.effect.impl.state.BoxBlurState.blurPasses:I
            imul
            iconst_1
            iadd
            istore 2 /* ksize */
         5: .line 97
            iload 2 /* ksize */
            iconst_1
            ior
            istore 2 /* ksize */
         6: .line 98
            iload 2 /* ksize */
            ireturn
        end local 2 // int ksize
        end local 1 // int pass
        end local 0 // com.sun.scenario.effect.impl.state.BoxBlurState this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lcom/sun/scenario/effect/impl/state/BoxBlurState;
            0    7     1   pass  I
            3    7     2  ksize  I
    MethodParameters:
      Name  Flags
      pass  
}
SourceFile: "BoxBlurState.java"