public class org.apache.batik.ext.awt.image.LinearTransfer implements org.apache.batik.ext.awt.image.TransferFunction
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.batik.ext.awt.image.LinearTransfer
  super_class: java.lang.Object
{
  public byte[] lutData;
    descriptor: [B
    flags: (0x0001) ACC_PUBLIC

  public float slope;
    descriptor: F
    flags: (0x0001) ACC_PUBLIC

  public float intercept;
    descriptor: F
    flags: (0x0001) ACC_PUBLIC

  public void <init>(float, float);
    descriptor: (FF)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.apache.batik.ext.awt.image.LinearTransfer this
        start local 1 // float slope
        start local 2 // float intercept
         0: .line 50
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 51
            aload 0 /* this */
            fload 1 /* slope */
            putfield org.apache.batik.ext.awt.image.LinearTransfer.slope:F
         2: .line 52
            aload 0 /* this */
            fload 2 /* intercept */
            putfield org.apache.batik.ext.awt.image.LinearTransfer.intercept:F
         3: .line 53
            return
        end local 2 // float intercept
        end local 1 // float slope
        end local 0 // org.apache.batik.ext.awt.image.LinearTransfer this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lorg/apache/batik/ext/awt/image/LinearTransfer;
            0    4     1      slope  F
            0    4     2  intercept  F
    MethodParameters:
           Name  Flags
      slope      
      intercept  

  private void buildLutData();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // org.apache.batik.ext.awt.image.LinearTransfer this
         0: .line 60
            aload 0 /* this */
            sipush 256
            newarray 8
            putfield org.apache.batik.ext.awt.image.LinearTransfer.lutData:[B
         1: .line 62
            aload 0 /* this */
            getfield org.apache.batik.ext.awt.image.LinearTransfer.intercept:F
            ldc 255.0
            fmul
            ldc 0.5
            fadd
            fstore 3 /* scaledInt */
        start local 3 // float scaledInt
         2: .line 63
            iconst_0
            istore 1 /* j */
        start local 1 // int j
         3: goto 12
         4: .line 64
      StackMap locals: org.apache.batik.ext.awt.image.LinearTransfer int top float
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.batik.ext.awt.image.LinearTransfer.slope:F
            iload 1 /* j */
            i2f
            fmul
            fload 3 /* scaledInt */
            fadd
            f2i
            istore 2 /* value */
        start local 2 // int value
         5: .line 65
            iload 2 /* value */
            ifge 8
         6: .line 66
            iconst_0
            istore 2 /* value */
         7: .line 67
            goto 10
         8: .line 68
      StackMap locals: org.apache.batik.ext.awt.image.LinearTransfer int int float
      StackMap stack:
            iload 2 /* value */
            sipush 255
            if_icmple 10
         9: .line 69
            sipush 255
            istore 2 /* value */
        10: .line 71
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.batik.ext.awt.image.LinearTransfer.lutData:[B
            iload 1 /* j */
            sipush 255
            iload 2 /* value */
            iand
            i2b
            bastore
        11: .line 63
            iinc 1 /* j */ 1
        end local 2 // int value
      StackMap locals: org.apache.batik.ext.awt.image.LinearTransfer int top float
      StackMap stack:
        12: iload 1 /* j */
            sipush 255
            if_icmple 4
        13: .line 80
            return
        end local 3 // float scaledInt
        end local 1 // int j
        end local 0 // org.apache.batik.ext.awt.image.LinearTransfer this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   14     0       this  Lorg/apache/batik/ext/awt/image/LinearTransfer;
            3   14     1          j  I
            5   12     2      value  I
            2   14     3  scaledInt  F

  public byte[] getLookupTable();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.batik.ext.awt.image.LinearTransfer this
         0: .line 87
            aload 0 /* this */
            invokevirtual org.apache.batik.ext.awt.image.LinearTransfer.buildLutData:()V
         1: .line 88
            aload 0 /* this */
            getfield org.apache.batik.ext.awt.image.LinearTransfer.lutData:[B
            areturn
        end local 0 // org.apache.batik.ext.awt.image.LinearTransfer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/batik/ext/awt/image/LinearTransfer;
}
SourceFile: "LinearTransfer.java"