public abstract class com.sun.pisces.AbstractSurface implements com.sun.pisces.Surface
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: com.sun.pisces.AbstractSurface
  super_class: java.lang.Object
{
  private long nativePtr;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

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

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

  void <init>(int, int);
    descriptor: (II)V
    flags: (0x0000) 
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // com.sun.pisces.AbstractSurface this
        start local 1 // int width
        start local 2 // int height
         0: .line 34
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 30
            aload 0 /* this */
            lconst_0
            putfield com.sun.pisces.AbstractSurface.nativePtr:J
         2: .line 35
            iload 1 /* width */
            ifge 4
         3: .line 36
            new java.lang.IllegalArgumentException
            dup
            ldc "WIDTH must be positive"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 38
      StackMap locals: com.sun.pisces.AbstractSurface int int
      StackMap stack:
            iload 2 /* height */
            ifge 6
         5: .line 39
            new java.lang.IllegalArgumentException
            dup
            ldc "HEIGHT must be positive"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 41
      StackMap locals:
      StackMap stack:
            bipush 32
            iload 1 /* width */
            invokestatic java.lang.Integer.numberOfLeadingZeros:(I)I
            isub
            bipush 32
            iadd
            iload 2 /* height */
            invokestatic java.lang.Integer.numberOfLeadingZeros:(I)I
            isub
            istore 3 /* nbits */
        start local 3 // int nbits
         7: .line 42
            iload 3 /* nbits */
            bipush 31
            if_icmple 9
         8: .line 43
            new java.lang.IllegalArgumentException
            dup
            ldc "WIDTH * HEIGHT is too large"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         9: .line 45
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* width */
            putfield com.sun.pisces.AbstractSurface.width:I
        10: .line 46
            aload 0 /* this */
            iload 2 /* height */
            putfield com.sun.pisces.AbstractSurface.height:I
        11: .line 47
            return
        end local 3 // int nbits
        end local 2 // int height
        end local 1 // int width
        end local 0 // com.sun.pisces.AbstractSurface this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   12     0    this  Lcom/sun/pisces/AbstractSurface;
            0   12     1   width  I
            0   12     2  height  I
            7   12     3   nbits  I
    MethodParameters:
        Name  Flags
      width   
      height  

  public final void getRGB(int[], int, int, int, int, int, int);
    descriptor: ([IIIIIII)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=8, locals=8, args_size=8
        start local 0 // com.sun.pisces.AbstractSurface this
        start local 1 // int[] argb
        start local 2 // int offset
        start local 3 // int scanLength
        start local 4 // int x
        start local 5 // int y
        start local 6 // int width
        start local 7 // int height
         0: .line 50
            aload 0 /* this */
            aload 1 /* argb */
            arraylength
            iload 2 /* offset */
            iload 3 /* scanLength */
            iload 4 /* x */
            iload 5 /* y */
            iload 6 /* width */
            iload 7 /* height */
            invokevirtual com.sun.pisces.AbstractSurface.rgbCheck:(IIIIIII)V
         1: .line 51
            aload 0 /* this */
            aload 1 /* argb */
            iload 2 /* offset */
            iload 3 /* scanLength */
            iload 4 /* x */
            iload 5 /* y */
            iload 6 /* width */
            iload 7 /* height */
            invokevirtual com.sun.pisces.AbstractSurface.getRGBImpl:([IIIIIII)V
         2: .line 52
            return
        end local 7 // int height
        end local 6 // int width
        end local 5 // int y
        end local 4 // int x
        end local 3 // int scanLength
        end local 2 // int offset
        end local 1 // int[] argb
        end local 0 // com.sun.pisces.AbstractSurface this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0        this  Lcom/sun/pisces/AbstractSurface;
            0    3     1        argb  [I
            0    3     2      offset  I
            0    3     3  scanLength  I
            0    3     4           x  I
            0    3     5           y  I
            0    3     6       width  I
            0    3     7      height  I
    MethodParameters:
            Name  Flags
      argb        
      offset      
      scanLength  
      x           
      y           
      width       
      height      

  private native void getRGBImpl(int[], int, int, int, int, int, int);
    descriptor: ([IIIIIII)V
    flags: (0x0102) ACC_PRIVATE, ACC_NATIVE
    MethodParameters:
            Name  Flags
      argb        
      offset      
      scanLength  
      x           
      y           
      width       
      height      

  public final void setRGB(int[], int, int, int, int, int, int);
    descriptor: ([IIIIIII)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=8, locals=8, args_size=8
        start local 0 // com.sun.pisces.AbstractSurface this
        start local 1 // int[] argb
        start local 2 // int offset
        start local 3 // int scanLength
        start local 4 // int x
        start local 5 // int y
        start local 6 // int width
        start local 7 // int height
         0: .line 57
            aload 0 /* this */
            aload 1 /* argb */
            arraylength
            iload 2 /* offset */
            iload 3 /* scanLength */
            iload 4 /* x */
            iload 5 /* y */
            iload 6 /* width */
            iload 7 /* height */
            invokevirtual com.sun.pisces.AbstractSurface.rgbCheck:(IIIIIII)V
         1: .line 58
            aload 0 /* this */
            aload 1 /* argb */
            iload 2 /* offset */
            iload 3 /* scanLength */
            iload 4 /* x */
            iload 5 /* y */
            iload 6 /* width */
            iload 7 /* height */
            invokevirtual com.sun.pisces.AbstractSurface.setRGBImpl:([IIIIIII)V
         2: .line 59
            return
        end local 7 // int height
        end local 6 // int width
        end local 5 // int y
        end local 4 // int x
        end local 3 // int scanLength
        end local 2 // int offset
        end local 1 // int[] argb
        end local 0 // com.sun.pisces.AbstractSurface this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0        this  Lcom/sun/pisces/AbstractSurface;
            0    3     1        argb  [I
            0    3     2      offset  I
            0    3     3  scanLength  I
            0    3     4           x  I
            0    3     5           y  I
            0    3     6       width  I
            0    3     7      height  I
    MethodParameters:
            Name  Flags
      argb        
      offset      
      scanLength  
      x           
      y           
      width       
      height      

  private native void setRGBImpl(int[], int, int, int, int, int, int);
    descriptor: ([IIIIIII)V
    flags: (0x0102) ACC_PRIVATE, ACC_NATIVE
    MethodParameters:
            Name  Flags
      argb        
      offset      
      scanLength  
      x           
      y           
      width       
      height      

  private void rgbCheck(int, int, int, int, int, int, int);
    descriptor: (IIIIIII)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=9, args_size=8
        start local 0 // com.sun.pisces.AbstractSurface this
        start local 1 // int arr_length
        start local 2 // int offset
        start local 3 // int scanLength
        start local 4 // int x
        start local 5 // int y
        start local 6 // int width
        start local 7 // int height
         0: .line 64
            iload 4 /* x */
            iflt 1
            iload 4 /* x */
            aload 0 /* this */
            getfield com.sun.pisces.AbstractSurface.width:I
            if_icmplt 2
         1: .line 65
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "X is out of surface"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 67
      StackMap locals:
      StackMap stack:
            iload 5 /* y */
            iflt 3
            iload 5 /* y */
            aload 0 /* this */
            getfield com.sun.pisces.AbstractSurface.height:I
            if_icmplt 4
         3: .line 68
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "Y is out of surface"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 70
      StackMap locals:
      StackMap stack:
            iload 6 /* width */
            ifge 6
         5: .line 71
            new java.lang.IllegalArgumentException
            dup
            ldc "WIDTH must be positive"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 73
      StackMap locals:
      StackMap stack:
            iload 7 /* height */
            ifge 8
         7: .line 74
            new java.lang.IllegalArgumentException
            dup
            ldc "HEIGHT must be positive"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         8: .line 76
      StackMap locals:
      StackMap stack:
            iload 4 /* x */
            iload 6 /* width */
            iadd
            aload 0 /* this */
            getfield com.sun.pisces.AbstractSurface.width:I
            if_icmple 10
         9: .line 77
            new java.lang.IllegalArgumentException
            dup
            ldc "X+WIDTH is out of surface"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        10: .line 79
      StackMap locals:
      StackMap stack:
            iload 5 /* y */
            iload 7 /* height */
            iadd
            aload 0 /* this */
            getfield com.sun.pisces.AbstractSurface.height:I
            if_icmple 12
        11: .line 80
            new java.lang.IllegalArgumentException
            dup
            ldc "Y+HEIGHT is out of surface"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        12: .line 82
      StackMap locals:
      StackMap stack:
            iload 2 /* offset */
            ifge 14
        13: .line 83
            new java.lang.IllegalArgumentException
            dup
            ldc "OFFSET must be positive"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        14: .line 85
      StackMap locals:
      StackMap stack:
            iload 3 /* scanLength */
            ifge 16
        15: .line 86
            new java.lang.IllegalArgumentException
            dup
            ldc "SCAN-LENGTH must be positive"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        16: .line 88
      StackMap locals:
      StackMap stack:
            iload 3 /* scanLength */
            iload 6 /* width */
            if_icmpge 18
        17: .line 89
            new java.lang.IllegalArgumentException
            dup
            ldc "SCAN-LENGTH must be >= WIDTH"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        18: .line 91
      StackMap locals:
      StackMap stack:
            bipush 32
            iload 3 /* scanLength */
            invokestatic java.lang.Integer.numberOfLeadingZeros:(I)I
            isub
            bipush 32
            iadd
            iload 7 /* height */
            invokestatic java.lang.Integer.numberOfLeadingZeros:(I)I
            isub
            istore 8 /* nbits */
        start local 8 // int nbits
        19: .line 92
            iload 8 /* nbits */
            bipush 31
            if_icmple 21
        20: .line 93
            new java.lang.IllegalArgumentException
            dup
            ldc "SCAN-LENGTH * HEIGHT is too large"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        21: .line 95
      StackMap locals: int
      StackMap stack:
            iload 2 /* offset */
            iload 3 /* scanLength */
            iload 7 /* height */
            iconst_1
            isub
            imul
            iadd
            iload 6 /* width */
            iadd
            iload 1 /* arr_length */
            if_icmple 23
        22: .line 96
            new java.lang.IllegalArgumentException
            dup
            ldc "STRIDE * HEIGHT exceeds length of data"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        23: .line 98
      StackMap locals:
      StackMap stack:
            return
        end local 8 // int nbits
        end local 7 // int height
        end local 6 // int width
        end local 5 // int y
        end local 4 // int x
        end local 3 // int scanLength
        end local 2 // int offset
        end local 1 // int arr_length
        end local 0 // com.sun.pisces.AbstractSurface this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   24     0        this  Lcom/sun/pisces/AbstractSurface;
            0   24     1  arr_length  I
            0   24     2      offset  I
            0   24     3  scanLength  I
            0   24     4           x  I
            0   24     5           y  I
            0   24     6       width  I
            0   24     7      height  I
           19   24     8       nbits  I
    MethodParameters:
            Name  Flags
      arr_length  
      offset      
      scanLength  
      x           
      y           
      width       
      height      

  protected void finalize();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.pisces.AbstractSurface this
         0: .line 101
            aload 0 /* this */
            invokevirtual com.sun.pisces.AbstractSurface.nativeFinalize:()V
         1: .line 102
            return
        end local 0 // com.sun.pisces.AbstractSurface this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/pisces/AbstractSurface;

  public final int getWidth();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.pisces.AbstractSurface this
         0: .line 105
            aload 0 /* this */
            getfield com.sun.pisces.AbstractSurface.width:I
            ireturn
        end local 0 // com.sun.pisces.AbstractSurface this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/pisces/AbstractSurface;

  public final int getHeight();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.pisces.AbstractSurface this
         0: .line 109
            aload 0 /* this */
            getfield com.sun.pisces.AbstractSurface.height:I
            ireturn
        end local 0 // com.sun.pisces.AbstractSurface this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/pisces/AbstractSurface;

  private native void nativeFinalize();
    descriptor: ()V
    flags: (0x0102) ACC_PRIVATE, ACC_NATIVE
}
SourceFile: "AbstractSurface.java"