public final class java.awt.image.DataBufferShort extends java.awt.image.DataBuffer
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: java.awt.image.DataBufferShort
  super_class: java.awt.image.DataBuffer
{
  short[] data;
    descriptor: [S
    flags: (0x0000) 

  short[][] bankdata;
    descriptor: [[S
    flags: (0x0000) 

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // java.awt.image.DataBufferShort this
        start local 1 // int size
         0: .line 73
            aload 0 /* this */
            getstatic sun.java2d.StateTrackable$State.STABLE:Lsun/java2d/StateTrackable$State;
            iconst_2
            iload 1 /* size */
            invokespecial java.awt.image.DataBuffer.<init>:(Lsun/java2d/StateTrackable$State;II)V
         1: .line 74
            aload 0 /* this */
            iload 1 /* size */
            newarray 9
            putfield java.awt.image.DataBufferShort.data:[S
         2: .line 75
            aload 0 /* this */
            iconst_1
            anewarray short[]
            putfield java.awt.image.DataBufferShort.bankdata:[[S
         3: .line 76
            aload 0 /* this */
            getfield java.awt.image.DataBufferShort.bankdata:[[S
            iconst_0
            aload 0 /* this */
            getfield java.awt.image.DataBufferShort.data:[S
            aastore
         4: .line 77
            return
        end local 1 // int size
        end local 0 // java.awt.image.DataBufferShort this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Ljava/awt/image/DataBufferShort;
            0    5     1  size  I
    MethodParameters:
      Name  Flags
      size  

  public void <init>(int, int);
    descriptor: (II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // java.awt.image.DataBufferShort this
        start local 1 // int size
        start local 2 // int numBanks
         0: .line 87
            aload 0 /* this */
            getstatic sun.java2d.StateTrackable$State.STABLE:Lsun/java2d/StateTrackable$State;
            iconst_2
            iload 1 /* size */
            iload 2 /* numBanks */
            invokespecial java.awt.image.DataBuffer.<init>:(Lsun/java2d/StateTrackable$State;III)V
         1: .line 88
            aload 0 /* this */
            iload 2 /* numBanks */
            anewarray short[]
            putfield java.awt.image.DataBufferShort.bankdata:[[S
         2: .line 89
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         3: goto 6
         4: .line 90
      StackMap locals: java.awt.image.DataBufferShort int int int
      StackMap stack:
            aload 0 /* this */
            getfield java.awt.image.DataBufferShort.bankdata:[[S
            iload 3 /* i */
            iload 1 /* size */
            newarray 9
            aastore
         5: .line 89
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 3 /* i */
            iload 2 /* numBanks */
            if_icmplt 4
        end local 3 // int i
         7: .line 92
            aload 0 /* this */
            aload 0 /* this */
            getfield java.awt.image.DataBufferShort.bankdata:[[S
            iconst_0
            aaload
            putfield java.awt.image.DataBufferShort.data:[S
         8: .line 93
            return
        end local 2 // int numBanks
        end local 1 // int size
        end local 0 // java.awt.image.DataBufferShort this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    9     0      this  Ljava/awt/image/DataBufferShort;
            0    9     1      size  I
            0    9     2  numBanks  I
            3    7     3         i  I
    MethodParameters:
          Name  Flags
      size      
      numBanks  

  public void <init>(short[], int);
    descriptor: ([SI)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // java.awt.image.DataBufferShort this
        start local 1 // short[] dataArray
        start local 2 // int size
         0: .line 111
            aload 0 /* this */
            getstatic sun.java2d.StateTrackable$State.UNTRACKABLE:Lsun/java2d/StateTrackable$State;
            iconst_2
            iload 2 /* size */
            invokespecial java.awt.image.DataBuffer.<init>:(Lsun/java2d/StateTrackable$State;II)V
         1: .line 112
            aload 0 /* this */
            aload 1 /* dataArray */
            putfield java.awt.image.DataBufferShort.data:[S
         2: .line 113
            aload 0 /* this */
            iconst_1
            anewarray short[]
            putfield java.awt.image.DataBufferShort.bankdata:[[S
         3: .line 114
            aload 0 /* this */
            getfield java.awt.image.DataBufferShort.bankdata:[[S
            iconst_0
            aload 0 /* this */
            getfield java.awt.image.DataBufferShort.data:[S
            aastore
         4: .line 115
            return
        end local 2 // int size
        end local 1 // short[] dataArray
        end local 0 // java.awt.image.DataBufferShort this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Ljava/awt/image/DataBufferShort;
            0    5     1  dataArray  [S
            0    5     2       size  I
    MethodParameters:
           Name  Flags
      dataArray  
      size       

  public void <init>(short[], int, int);
    descriptor: ([SII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=4
        start local 0 // java.awt.image.DataBufferShort this
        start local 1 // short[] dataArray
        start local 2 // int size
        start local 3 // int offset
         0: .line 134
            aload 0 /* this */
            getstatic sun.java2d.StateTrackable$State.UNTRACKABLE:Lsun/java2d/StateTrackable$State;
            iconst_2
            iload 2 /* size */
            iconst_1
            iload 3 /* offset */
            invokespecial java.awt.image.DataBuffer.<init>:(Lsun/java2d/StateTrackable$State;IIII)V
         1: .line 135
            aload 0 /* this */
            aload 1 /* dataArray */
            putfield java.awt.image.DataBufferShort.data:[S
         2: .line 136
            aload 0 /* this */
            iconst_1
            anewarray short[]
            putfield java.awt.image.DataBufferShort.bankdata:[[S
         3: .line 137
            aload 0 /* this */
            getfield java.awt.image.DataBufferShort.bankdata:[[S
            iconst_0
            aload 0 /* this */
            getfield java.awt.image.DataBufferShort.data:[S
            aastore
         4: .line 138
            return
        end local 3 // int offset
        end local 2 // int size
        end local 1 // short[] dataArray
        end local 0 // java.awt.image.DataBufferShort this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Ljava/awt/image/DataBufferShort;
            0    5     1  dataArray  [S
            0    5     2       size  I
            0    5     3     offset  I
    MethodParameters:
           Name  Flags
      dataArray  
      size       
      offset     

  public void <init>(short[][], int);
    descriptor: ([[SI)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // java.awt.image.DataBufferShort this
        start local 1 // short[][] dataArray
        start local 2 // int size
         0: .line 155
            aload 0 /* this */
            getstatic sun.java2d.StateTrackable$State.UNTRACKABLE:Lsun/java2d/StateTrackable$State;
            iconst_2
            iload 2 /* size */
            aload 1 /* dataArray */
            arraylength
            invokespecial java.awt.image.DataBuffer.<init>:(Lsun/java2d/StateTrackable$State;III)V
         1: .line 156
            aload 0 /* this */
            aload 1 /* dataArray */
            invokevirtual short[][].clone:()Ljava/lang/Object;
            checkcast short[][]
            putfield java.awt.image.DataBufferShort.bankdata:[[S
         2: .line 157
            aload 0 /* this */
            aload 0 /* this */
            getfield java.awt.image.DataBufferShort.bankdata:[[S
            iconst_0
            aaload
            putfield java.awt.image.DataBufferShort.data:[S
         3: .line 158
            return
        end local 2 // int size
        end local 1 // short[][] dataArray
        end local 0 // java.awt.image.DataBufferShort this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Ljava/awt/image/DataBufferShort;
            0    4     1  dataArray  [[S
            0    4     2       size  I
    MethodParameters:
           Name  Flags
      dataArray  
      size       

  public void <init>(short[][], int, int[]);
    descriptor: ([[SI[I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=4
        start local 0 // java.awt.image.DataBufferShort this
        start local 1 // short[][] dataArray
        start local 2 // int size
        start local 3 // int[] offsets
         0: .line 180
            aload 0 /* this */
            getstatic sun.java2d.StateTrackable$State.UNTRACKABLE:Lsun/java2d/StateTrackable$State;
            iconst_2
            iload 2 /* size */
            aload 1 /* dataArray */
            arraylength
            aload 3 /* offsets */
            invokespecial java.awt.image.DataBuffer.<init>:(Lsun/java2d/StateTrackable$State;III[I)V
         1: .line 181
            aload 0 /* this */
            aload 1 /* dataArray */
            invokevirtual short[][].clone:()Ljava/lang/Object;
            checkcast short[][]
            putfield java.awt.image.DataBufferShort.bankdata:[[S
         2: .line 182
            aload 0 /* this */
            aload 0 /* this */
            getfield java.awt.image.DataBufferShort.bankdata:[[S
            iconst_0
            aaload
            putfield java.awt.image.DataBufferShort.data:[S
         3: .line 183
            return
        end local 3 // int[] offsets
        end local 2 // int size
        end local 1 // short[][] dataArray
        end local 0 // java.awt.image.DataBufferShort this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Ljava/awt/image/DataBufferShort;
            0    4     1  dataArray  [[S
            0    4     2       size  I
            0    4     3    offsets  [I
    MethodParameters:
           Name  Flags
      dataArray  
      size       
      offsets    

  public short[] getData();
    descriptor: ()[S
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.awt.image.DataBufferShort this
         0: .line 196
            aload 0 /* this */
            getfield java.awt.image.DataBufferShort.theTrackable:Lsun/java2d/StateTrackableDelegate;
            invokevirtual sun.java2d.StateTrackableDelegate.setUntrackable:()V
         1: .line 197
            aload 0 /* this */
            getfield java.awt.image.DataBufferShort.data:[S
            areturn
        end local 0 // java.awt.image.DataBufferShort this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/awt/image/DataBufferShort;

  public short[] getData(int);
    descriptor: (I)[S
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.awt.image.DataBufferShort this
        start local 1 // int bank
         0: .line 212
            aload 0 /* this */
            getfield java.awt.image.DataBufferShort.theTrackable:Lsun/java2d/StateTrackableDelegate;
            invokevirtual sun.java2d.StateTrackableDelegate.setUntrackable:()V
         1: .line 213
            aload 0 /* this */
            getfield java.awt.image.DataBufferShort.bankdata:[[S
            iload 1 /* bank */
            aaload
            areturn
        end local 1 // int bank
        end local 0 // java.awt.image.DataBufferShort this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/awt/image/DataBufferShort;
            0    2     1  bank  I
    MethodParameters:
      Name  Flags
      bank  

  public short[][] getBankData();
    descriptor: ()[[S
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.awt.image.DataBufferShort this
         0: .line 227
            aload 0 /* this */
            getfield java.awt.image.DataBufferShort.theTrackable:Lsun/java2d/StateTrackableDelegate;
            invokevirtual sun.java2d.StateTrackableDelegate.setUntrackable:()V
         1: .line 228
            aload 0 /* this */
            getfield java.awt.image.DataBufferShort.bankdata:[[S
            invokevirtual short[][].clone:()Ljava/lang/Object;
            checkcast short[][]
            areturn
        end local 0 // java.awt.image.DataBufferShort this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/awt/image/DataBufferShort;

  public int getElem(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // java.awt.image.DataBufferShort this
        start local 1 // int i
         0: .line 240
            aload 0 /* this */
            getfield java.awt.image.DataBufferShort.data:[S
            iload 1 /* i */
            aload 0 /* this */
            getfield java.awt.image.DataBufferShort.offset:I
            iadd
            saload
            ireturn
        end local 1 // int i
        end local 0 // java.awt.image.DataBufferShort this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/awt/image/DataBufferShort;
            0    1     1     i  I
    MethodParameters:
      Name  Flags
      i     

  public int getElem(int, int);
    descriptor: (II)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // java.awt.image.DataBufferShort this
        start local 1 // int bank
        start local 2 // int i
         0: .line 253
            aload 0 /* this */
            getfield java.awt.image.DataBufferShort.bankdata:[[S
            iload 1 /* bank */
            aaload
            iload 2 /* i */
            aload 0 /* this */
            getfield java.awt.image.DataBufferShort.offsets:[I
            iload 1 /* bank */
            iaload
            iadd
            saload
            ireturn
        end local 2 // int i
        end local 1 // int bank
        end local 0 // java.awt.image.DataBufferShort this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/awt/image/DataBufferShort;
            0    1     1  bank  I
            0    1     2     i  I
    MethodParameters:
      Name  Flags
      bank  
      i     

  public void setElem(int, int);
    descriptor: (II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // java.awt.image.DataBufferShort this
        start local 1 // int i
        start local 2 // int val
         0: .line 266
            aload 0 /* this */
            getfield java.awt.image.DataBufferShort.data:[S
            iload 1 /* i */
            aload 0 /* this */
            getfield java.awt.image.DataBufferShort.offset:I
            iadd
            iload 2 /* val */
            i2s
            sastore
         1: .line 267
            aload 0 /* this */
            getfield java.awt.image.DataBufferShort.theTrackable:Lsun/java2d/StateTrackableDelegate;
            invokevirtual sun.java2d.StateTrackableDelegate.markDirty:()V
         2: .line 268
            return
        end local 2 // int val
        end local 1 // int i
        end local 0 // java.awt.image.DataBufferShort this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljava/awt/image/DataBufferShort;
            0    3     1     i  I
            0    3     2   val  I
    MethodParameters:
      Name  Flags
      i     
      val   

  public void setElem(int, int, int);
    descriptor: (III)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // java.awt.image.DataBufferShort this
        start local 1 // int bank
        start local 2 // int i
        start local 3 // int val
         0: .line 280
            aload 0 /* this */
            getfield java.awt.image.DataBufferShort.bankdata:[[S
            iload 1 /* bank */
            aaload
            iload 2 /* i */
            aload 0 /* this */
            getfield java.awt.image.DataBufferShort.offsets:[I
            iload 1 /* bank */
            iaload
            iadd
            iload 3 /* val */
            i2s
            sastore
         1: .line 281
            aload 0 /* this */
            getfield java.awt.image.DataBufferShort.theTrackable:Lsun/java2d/StateTrackableDelegate;
            invokevirtual sun.java2d.StateTrackableDelegate.markDirty:()V
         2: .line 282
            return
        end local 3 // int val
        end local 2 // int i
        end local 1 // int bank
        end local 0 // java.awt.image.DataBufferShort this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljava/awt/image/DataBufferShort;
            0    3     1  bank  I
            0    3     2     i  I
            0    3     3   val  I
    MethodParameters:
      Name  Flags
      bank  
      i     
      val   
}
SourceFile: "DataBufferShort.java"
InnerClasses:
  public final State = sun.java2d.StateTrackable$State of sun.java2d.StateTrackable