public class com.sun.scenario.effect.ColorAdjust extends com.sun.scenario.effect.CoreEffect<com.sun.scenario.effect.impl.state.RenderState>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.sun.scenario.effect.ColorAdjust
  super_class: com.sun.scenario.effect.CoreEffect
{
  private float hue;
    descriptor: F
    flags: (0x0002) ACC_PRIVATE

  private float saturation;
    descriptor: F
    flags: (0x0002) ACC_PRIVATE

  private float brightness;
    descriptor: F
    flags: (0x0002) ACC_PRIVATE

  private float contrast;
    descriptor: F
    flags: (0x0002) ACC_PRIVATE

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.sun.scenario.effect.ColorAdjust this
         0: .line 53
            aload 0 /* this */
            getstatic com.sun.scenario.effect.ColorAdjust.DefaultInput:Lcom/sun/scenario/effect/Effect;
            invokespecial com.sun.scenario.effect.ColorAdjust.<init>:(Lcom/sun/scenario/effect/Effect;)V
         1: .line 54
            return
        end local 0 // com.sun.scenario.effect.ColorAdjust this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/scenario/effect/ColorAdjust;

  public void <init>(com.sun.scenario.effect.Effect);
    descriptor: (Lcom/sun/scenario/effect/Effect;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.scenario.effect.ColorAdjust this
        start local 1 // com.sun.scenario.effect.Effect input
         0: .line 63
            aload 0 /* this */
            aload 1 /* input */
            invokespecial com.sun.scenario.effect.CoreEffect.<init>:(Lcom/sun/scenario/effect/Effect;)V
         1: .line 64
            aload 0 /* this */
            fconst_0
            putfield com.sun.scenario.effect.ColorAdjust.hue:F
         2: .line 65
            aload 0 /* this */
            fconst_0
            putfield com.sun.scenario.effect.ColorAdjust.saturation:F
         3: .line 66
            aload 0 /* this */
            fconst_0
            putfield com.sun.scenario.effect.ColorAdjust.brightness:F
         4: .line 67
            aload 0 /* this */
            fconst_0
            putfield com.sun.scenario.effect.ColorAdjust.contrast:F
         5: .line 68
            aload 0 /* this */
            ldc "ColorAdjust"
            invokevirtual com.sun.scenario.effect.ColorAdjust.updatePeerKey:(Ljava/lang/String;)V
         6: .line 69
            return
        end local 1 // com.sun.scenario.effect.Effect input
        end local 0 // com.sun.scenario.effect.ColorAdjust this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lcom/sun/scenario/effect/ColorAdjust;
            0    7     1  input  Lcom/sun/scenario/effect/Effect;
    MethodParameters:
       Name  Flags
      input  

  public final com.sun.scenario.effect.Effect getInput();
    descriptor: ()Lcom/sun/scenario/effect/Effect;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.sun.scenario.effect.ColorAdjust this
         0: .line 77
            aload 0 /* this */
            invokevirtual com.sun.scenario.effect.ColorAdjust.getInputs:()Ljava/util/List;
            iconst_0
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast com.sun.scenario.effect.Effect
            areturn
        end local 0 // com.sun.scenario.effect.ColorAdjust this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/scenario/effect/ColorAdjust;

  public void setInput(com.sun.scenario.effect.Effect);
    descriptor: (Lcom/sun/scenario/effect/Effect;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.sun.scenario.effect.ColorAdjust this
        start local 1 // com.sun.scenario.effect.Effect input
         0: .line 89
            aload 0 /* this */
            iconst_0
            aload 1 /* input */
            invokevirtual com.sun.scenario.effect.ColorAdjust.setInput:(ILcom/sun/scenario/effect/Effect;)V
         1: .line 90
            return
        end local 1 // com.sun.scenario.effect.Effect input
        end local 0 // com.sun.scenario.effect.ColorAdjust this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lcom/sun/scenario/effect/ColorAdjust;
            0    2     1  input  Lcom/sun/scenario/effect/Effect;
    MethodParameters:
       Name  Flags
      input  

  public float getHue();
    descriptor: ()F
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.scenario.effect.ColorAdjust this
         0: .line 98
            aload 0 /* this */
            getfield com.sun.scenario.effect.ColorAdjust.hue:F
            freturn
        end local 0 // com.sun.scenario.effect.ColorAdjust this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/scenario/effect/ColorAdjust;

  public void setHue(float);
    descriptor: (F)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.sun.scenario.effect.ColorAdjust this
        start local 1 // float hue
         0: .line 115
            fload 1 /* hue */
            ldc -1.0
            fcmpg
            iflt 1
            fload 1 /* hue */
            fconst_1
            fcmpl
            ifle 2
         1: .line 116
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "Hue must be in the range [-1, 1]"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 119
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            fload 1 /* hue */
            putfield com.sun.scenario.effect.ColorAdjust.hue:F
         3: .line 120
            return
        end local 1 // float hue
        end local 0 // com.sun.scenario.effect.ColorAdjust this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/sun/scenario/effect/ColorAdjust;
            0    4     1   hue  F
    MethodParameters:
      Name  Flags
      hue   

  public float getSaturation();
    descriptor: ()F
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.scenario.effect.ColorAdjust this
         0: .line 128
            aload 0 /* this */
            getfield com.sun.scenario.effect.ColorAdjust.saturation:F
            freturn
        end local 0 // com.sun.scenario.effect.ColorAdjust this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/scenario/effect/ColorAdjust;

  public void setSaturation(float);
    descriptor: (F)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.sun.scenario.effect.ColorAdjust this
        start local 1 // float saturation
         0: .line 145
            fload 1 /* saturation */
            ldc -1.0
            fcmpg
            iflt 1
            fload 1 /* saturation */
            fconst_1
            fcmpl
            ifle 2
         1: .line 146
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "Saturation must be in the range [-1, 1]"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 149
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            fload 1 /* saturation */
            putfield com.sun.scenario.effect.ColorAdjust.saturation:F
         3: .line 150
            return
        end local 1 // float saturation
        end local 0 // com.sun.scenario.effect.ColorAdjust this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0        this  Lcom/sun/scenario/effect/ColorAdjust;
            0    4     1  saturation  F
    MethodParameters:
            Name  Flags
      saturation  

  public float getBrightness();
    descriptor: ()F
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.scenario.effect.ColorAdjust this
         0: .line 158
            aload 0 /* this */
            getfield com.sun.scenario.effect.ColorAdjust.brightness:F
            freturn
        end local 0 // com.sun.scenario.effect.ColorAdjust this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/scenario/effect/ColorAdjust;

  public void setBrightness(float);
    descriptor: (F)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.sun.scenario.effect.ColorAdjust this
        start local 1 // float brightness
         0: .line 175
            fload 1 /* brightness */
            ldc -1.0
            fcmpg
            iflt 1
            fload 1 /* brightness */
            fconst_1
            fcmpl
            ifle 2
         1: .line 176
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "Brightness must be in the range [-1, 1]"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 179
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            fload 1 /* brightness */
            putfield com.sun.scenario.effect.ColorAdjust.brightness:F
         3: .line 180
            return
        end local 1 // float brightness
        end local 0 // com.sun.scenario.effect.ColorAdjust this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0        this  Lcom/sun/scenario/effect/ColorAdjust;
            0    4     1  brightness  F
    MethodParameters:
            Name  Flags
      brightness  

  public float getContrast();
    descriptor: ()F
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.scenario.effect.ColorAdjust this
         0: .line 188
            aload 0 /* this */
            getfield com.sun.scenario.effect.ColorAdjust.contrast:F
            freturn
        end local 0 // com.sun.scenario.effect.ColorAdjust this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/scenario/effect/ColorAdjust;

  public void setContrast(float);
    descriptor: (F)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.sun.scenario.effect.ColorAdjust this
        start local 1 // float contrast
         0: .line 205
            fload 1 /* contrast */
            ldc -1.0
            fcmpg
            iflt 1
            fload 1 /* contrast */
            fconst_1
            fcmpl
            ifle 2
         1: .line 206
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "Contrast must be in the range [-1, 1]"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 209
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            fload 1 /* contrast */
            putfield com.sun.scenario.effect.ColorAdjust.contrast:F
         3: .line 210
            return
        end local 1 // float contrast
        end local 0 // com.sun.scenario.effect.ColorAdjust this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lcom/sun/scenario/effect/ColorAdjust;
            0    4     1  contrast  F
    MethodParameters:
          Name  Flags
      contrast  

  public com.sun.scenario.effect.impl.state.RenderState getRenderState(com.sun.scenario.effect.FilterContext, com.sun.javafx.geom.transform.BaseTransform, com.sun.javafx.geom.Rectangle, java.lang.Object, com.sun.scenario.effect.Effect);
    descriptor: (Lcom/sun/scenario/effect/FilterContext;Lcom/sun/javafx/geom/transform/BaseTransform;Lcom/sun/javafx/geom/Rectangle;Ljava/lang/Object;Lcom/sun/scenario/effect/Effect;)Lcom/sun/scenario/effect/impl/state/RenderState;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=6, args_size=6
        start local 0 // com.sun.scenario.effect.ColorAdjust this
        start local 1 // com.sun.scenario.effect.FilterContext fctx
        start local 2 // com.sun.javafx.geom.transform.BaseTransform transform
        start local 3 // com.sun.javafx.geom.Rectangle outputClip
        start local 4 // java.lang.Object renderHelper
        start local 5 // com.sun.scenario.effect.Effect defaultInput
         0: .line 219
            getstatic com.sun.scenario.effect.impl.state.RenderState.RenderSpaceRenderState:Lcom/sun/scenario/effect/impl/state/RenderState;
            areturn
        end local 5 // com.sun.scenario.effect.Effect defaultInput
        end local 4 // java.lang.Object renderHelper
        end local 3 // com.sun.javafx.geom.Rectangle outputClip
        end local 2 // com.sun.javafx.geom.transform.BaseTransform transform
        end local 1 // com.sun.scenario.effect.FilterContext fctx
        end local 0 // com.sun.scenario.effect.ColorAdjust this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lcom/sun/scenario/effect/ColorAdjust;
            0    1     1          fctx  Lcom/sun/scenario/effect/FilterContext;
            0    1     2     transform  Lcom/sun/javafx/geom/transform/BaseTransform;
            0    1     3    outputClip  Lcom/sun/javafx/geom/Rectangle;
            0    1     4  renderHelper  Ljava/lang/Object;
            0    1     5  defaultInput  Lcom/sun/scenario/effect/Effect;
    MethodParameters:
              Name  Flags
      fctx          
      transform     
      outputClip    
      renderHelper  
      defaultInput  

  public boolean reducesOpaquePixels();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // com.sun.scenario.effect.ColorAdjust this
         0: .line 224
            aload 0 /* this */
            invokevirtual com.sun.scenario.effect.ColorAdjust.getInput:()Lcom/sun/scenario/effect/Effect;
            astore 1 /* input */
        start local 1 // com.sun.scenario.effect.Effect input
         1: .line 225
            aload 1 /* input */
            ifnull 2
            aload 1 /* input */
            invokevirtual com.sun.scenario.effect.Effect.reducesOpaquePixels:()Z
            ifeq 2
            iconst_1
            ireturn
      StackMap locals: com.sun.scenario.effect.Effect
      StackMap stack:
         2: iconst_0
            ireturn
        end local 1 // com.sun.scenario.effect.Effect input
        end local 0 // com.sun.scenario.effect.ColorAdjust this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lcom/sun/scenario/effect/ColorAdjust;
            1    3     1  input  Lcom/sun/scenario/effect/Effect;

  public com.sun.scenario.effect.ImageData filterImageDatas(com.sun.scenario.effect.FilterContext, com.sun.javafx.geom.transform.BaseTransform, com.sun.javafx.geom.Rectangle, com.sun.scenario.effect.impl.state.RenderState, com.sun.scenario.effect.ImageData[]);
    descriptor: (Lcom/sun/scenario/effect/FilterContext;Lcom/sun/javafx/geom/transform/BaseTransform;Lcom/sun/javafx/geom/Rectangle;Lcom/sun/scenario/effect/impl/state/RenderState;[Lcom/sun/scenario/effect/ImageData;)Lcom/sun/scenario/effect/ImageData;
    flags: (0x10c1) ACC_PUBLIC, ACC_BRIDGE, ACC_VARARGS, ACC_SYNTHETIC
    Code:
      stack=6, locals=6, args_size=6
         0: .line 1
            aload 0
            aload 1
            aload 2
            aload 3
            aload 4
            aload 5
            invokespecial com.sun.scenario.effect.CoreEffect.filterImageDatas:(Lcom/sun/scenario/effect/FilterContext;Lcom/sun/javafx/geom/transform/BaseTransform;Lcom/sun/javafx/geom/Rectangle;Lcom/sun/scenario/effect/impl/state/RenderState;[Lcom/sun/scenario/effect/ImageData;)Lcom/sun/scenario/effect/ImageData;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public com.sun.scenario.effect.Effect$AccelType getAccelType(com.sun.scenario.effect.FilterContext);
    descriptor: (Lcom/sun/scenario/effect/FilterContext;)Lcom/sun/scenario/effect/Effect$AccelType;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokespecial com.sun.scenario.effect.CoreEffect.getAccelType:(Lcom/sun/scenario/effect/FilterContext;)Lcom/sun/scenario/effect/Effect$AccelType;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: Lcom/sun/scenario/effect/CoreEffect<Lcom/sun/scenario/effect/impl/state/RenderState;>;
SourceFile: "ColorAdjust.java"
InnerClasses:
  public final AccelType = com.sun.scenario.effect.Effect$AccelType of com.sun.scenario.effect.Effect