class sun.text.BreakDictionary
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: sun.text.BreakDictionary
  super_class: java.lang.Object
{
  private static int supportedVersion;
    descriptor: I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC

  private sun.text.CompactByteArray columnMap;
    descriptor: Lsun/text/CompactByteArray;
    flags: (0x0002) ACC_PRIVATE

  private sun.text.SupplementaryCharacterData supplementaryCharColumnMap;
    descriptor: Lsun/text/SupplementaryCharacterData;
    flags: (0x0002) ACC_PRIVATE

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

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

  private short[] table;
    descriptor: [S
    flags: (0x0002) ACC_PRIVATE

  private short[] rowIndex;
    descriptor: [S
    flags: (0x0002) ACC_PRIVATE

  private int[] rowIndexFlags;
    descriptor: [I
    flags: (0x0002) ACC_PRIVATE

  private short[] rowIndexFlagsIndex;
    descriptor: [S
    flags: (0x0002) ACC_PRIVATE

  private byte[] rowIndexShifts;
    descriptor: [B
    flags: (0x0002) ACC_PRIVATE

  static final boolean $assertionsDisabled;
    descriptor: Z
    flags: (0x1018) ACC_STATIC, ACC_FINAL, ACC_SYNTHETIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 59
            ldc Lsun/text/BreakDictionary;
            invokevirtual java.lang.Class.desiredAssertionStatus:()Z
            ifne 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: putstatic sun.text.BreakDictionary.$assertionsDisabled:Z
         3: .line 68
            iconst_1
            putstatic sun.text.BreakDictionary.supportedVersion:I
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>(java.lang.String, byte[]);
    descriptor: (Ljava/lang/String;[B)V
    flags: (0x0000) 
    Code:
      stack=5, locals=5, args_size=3
        start local 0 // sun.text.BreakDictionary this
        start local 1 // java.lang.String dictionaryName
        start local 2 // byte[] dictionaryData
         0: .line 135
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 74
            aload 0 /* this */
            aconst_null
            putfield sun.text.BreakDictionary.columnMap:Lsun/text/CompactByteArray;
         2: .line 75
            aload 0 /* this */
            aconst_null
            putfield sun.text.BreakDictionary.supplementaryCharColumnMap:Lsun/text/SupplementaryCharacterData;
         3: .line 100
            aload 0 /* this */
            aconst_null
            putfield sun.text.BreakDictionary.table:[S
         4: .line 105
            aload 0 /* this */
            aconst_null
            putfield sun.text.BreakDictionary.rowIndex:[S
         5: .line 113
            aload 0 /* this */
            aconst_null
            putfield sun.text.BreakDictionary.rowIndexFlags:[I
         6: .line 123
            aload 0 /* this */
            aconst_null
            putfield sun.text.BreakDictionary.rowIndexFlagsIndex:[S
         7: .line 129
            aload 0 /* this */
            aconst_null
            putfield sun.text.BreakDictionary.rowIndexShifts:[B
         8: .line 137
            aload 0 /* this */
            aload 1 /* dictionaryName */
            aload 2 /* dictionaryData */
            invokevirtual sun.text.BreakDictionary.setupDictionary:(Ljava/lang/String;[B)V
         9: .line 138
            goto 16
      StackMap locals: sun.text.BreakDictionary java.lang.String byte[]
      StackMap stack: java.nio.BufferUnderflowException
        10: astore 3 /* bue */
        start local 3 // java.nio.BufferUnderflowException bue
        11: .line 140
            new java.util.MissingResourceException
            dup
            ldc "Corrupted dictionary data"
        12: .line 141
            aload 1 /* dictionaryName */
            ldc ""
        13: .line 140
            invokespecial java.util.MissingResourceException.<init>:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
            astore 4 /* e */
        start local 4 // java.util.MissingResourceException e
        14: .line 142
            aload 4 /* e */
            aload 3 /* bue */
            invokevirtual java.util.MissingResourceException.initCause:(Ljava/lang/Throwable;)Ljava/lang/Throwable;
            pop
        15: .line 143
            aload 4 /* e */
            athrow
        end local 4 // java.util.MissingResourceException e
        end local 3 // java.nio.BufferUnderflowException bue
        16: .line 145
      StackMap locals:
      StackMap stack:
            return
        end local 2 // byte[] dictionaryData
        end local 1 // java.lang.String dictionaryName
        end local 0 // sun.text.BreakDictionary this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   17     0            this  Lsun/text/BreakDictionary;
            0   17     1  dictionaryName  Ljava/lang/String;
            0   17     2  dictionaryData  [B
           11   16     3             bue  Ljava/nio/BufferUnderflowException;
           14   16     4               e  Ljava/util/MissingResourceException;
      Exception table:
        from    to  target  type
           8     9      10  Class java.nio.BufferUnderflowException
    MethodParameters:
                Name  Flags
      dictionaryName  
      dictionaryData  

  private void setupDictionary(java.lang.String, byte[]);
    descriptor: (Ljava/lang/String;[B)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=10, args_size=3
        start local 0 // sun.text.BreakDictionary this
        start local 1 // java.lang.String dictionaryName
        start local 2 // byte[] dictionaryData
         0: .line 148
            aload 2 /* dictionaryData */
            invokestatic java.nio.ByteBuffer.wrap:([B)Ljava/nio/ByteBuffer;
            astore 3 /* bb */
        start local 3 // java.nio.ByteBuffer bb
         1: .line 151
            aload 3 /* bb */
            invokevirtual java.nio.ByteBuffer.getInt:()I
            istore 4 /* version */
        start local 4 // int version
         2: .line 152
            iload 4 /* version */
            getstatic sun.text.BreakDictionary.supportedVersion:I
            if_icmpeq 6
         3: .line 153
            new java.util.MissingResourceException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Dictionary version("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 4 /* version */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ") is unsupported"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         4: .line 154
            aload 1 /* dictionaryName */
            ldc ""
         5: .line 153
            invokespecial java.util.MissingResourceException.<init>:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
            athrow
         6: .line 158
      StackMap locals: java.nio.ByteBuffer int
      StackMap stack:
            aload 3 /* bb */
            invokevirtual java.nio.ByteBuffer.getInt:()I
            istore 5 /* len */
        start local 5 // int len
         7: .line 159
            aload 3 /* bb */
            invokevirtual java.nio.ByteBuffer.position:()I
            iload 5 /* len */
            iadd
            aload 3 /* bb */
            invokevirtual java.nio.ByteBuffer.limit:()I
            if_icmpeq 11
         8: .line 160
            new java.util.MissingResourceException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Dictionary size is wrong: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 3 /* bb */
            invokevirtual java.nio.ByteBuffer.limit:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         9: .line 161
            aload 1 /* dictionaryName */
            ldc ""
        10: .line 160
            invokespecial java.util.MissingResourceException.<init>:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
            athrow
        11: .line 166
      StackMap locals: int
      StackMap stack:
            aload 3 /* bb */
            invokevirtual java.nio.ByteBuffer.getInt:()I
            istore 5 /* len */
        12: .line 167
            iload 5 /* len */
            newarray 9
            astore 6 /* temp */
        start local 6 // short[] temp
        13: .line 168
            iconst_0
            istore 7 /* i */
        start local 7 // int i
        14: goto 17
        15: .line 169
      StackMap locals: short[] int
      StackMap stack:
            aload 6 /* temp */
            iload 7 /* i */
            aload 3 /* bb */
            invokevirtual java.nio.ByteBuffer.getShort:()S
            sastore
        16: .line 168
            iinc 7 /* i */ 1
      StackMap locals:
      StackMap stack:
        17: iload 7 /* i */
            iload 5 /* len */
            if_icmplt 15
        end local 7 // int i
        18: .line 171
            aload 3 /* bb */
            invokevirtual java.nio.ByteBuffer.getInt:()I
            istore 5 /* len */
        19: .line 172
            iload 5 /* len */
            newarray 8
            astore 7 /* temp2 */
        start local 7 // byte[] temp2
        20: .line 173
            aload 3 /* bb */
            aload 7 /* temp2 */
            invokevirtual java.nio.ByteBuffer.get:([B)Ljava/nio/ByteBuffer;
            pop
        21: .line 174
            aload 0 /* this */
            new sun.text.CompactByteArray
            dup
            aload 6 /* temp */
            aload 7 /* temp2 */
            invokespecial sun.text.CompactByteArray.<init>:([S[B)V
            putfield sun.text.BreakDictionary.columnMap:Lsun/text/CompactByteArray;
        22: .line 177
            aload 0 /* this */
            aload 3 /* bb */
            invokevirtual java.nio.ByteBuffer.getInt:()I
            putfield sun.text.BreakDictionary.numCols:I
        23: .line 178
            aload 0 /* this */
            aload 3 /* bb */
            invokevirtual java.nio.ByteBuffer.getInt:()I
            putfield sun.text.BreakDictionary.numColGroups:I
        24: .line 181
            aload 3 /* bb */
            invokevirtual java.nio.ByteBuffer.getInt:()I
            istore 5 /* len */
        25: .line 182
            aload 0 /* this */
            iload 5 /* len */
            newarray 9
            putfield sun.text.BreakDictionary.rowIndex:[S
        26: .line 183
            iconst_0
            istore 8 /* i */
        start local 8 // int i
        27: goto 30
        28: .line 184
      StackMap locals: sun.text.BreakDictionary java.lang.String byte[] java.nio.ByteBuffer int int short[] byte[] int
      StackMap stack:
            aload 0 /* this */
            getfield sun.text.BreakDictionary.rowIndex:[S
            iload 8 /* i */
            aload 3 /* bb */
            invokevirtual java.nio.ByteBuffer.getShort:()S
            sastore
        29: .line 183
            iinc 8 /* i */ 1
      StackMap locals:
      StackMap stack:
        30: iload 8 /* i */
            iload 5 /* len */
            if_icmplt 28
        end local 8 // int i
        31: .line 188
            aload 3 /* bb */
            invokevirtual java.nio.ByteBuffer.getInt:()I
            istore 5 /* len */
        32: .line 189
            aload 0 /* this */
            iload 5 /* len */
            newarray 9
            putfield sun.text.BreakDictionary.rowIndexFlagsIndex:[S
        33: .line 190
            iconst_0
            istore 8 /* i */
        start local 8 // int i
        34: goto 37
        35: .line 191
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.text.BreakDictionary.rowIndexFlagsIndex:[S
            iload 8 /* i */
            aload 3 /* bb */
            invokevirtual java.nio.ByteBuffer.getShort:()S
            sastore
        36: .line 190
            iinc 8 /* i */ 1
      StackMap locals:
      StackMap stack:
        37: iload 8 /* i */
            iload 5 /* len */
            if_icmplt 35
        end local 8 // int i
        38: .line 193
            aload 3 /* bb */
            invokevirtual java.nio.ByteBuffer.getInt:()I
            istore 5 /* len */
        39: .line 194
            aload 0 /* this */
            iload 5 /* len */
            newarray 10
            putfield sun.text.BreakDictionary.rowIndexFlags:[I
        40: .line 195
            iconst_0
            istore 8 /* i */
        start local 8 // int i
        41: goto 44
        42: .line 196
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.text.BreakDictionary.rowIndexFlags:[I
            iload 8 /* i */
            aload 3 /* bb */
            invokevirtual java.nio.ByteBuffer.getInt:()I
            iastore
        43: .line 195
            iinc 8 /* i */ 1
      StackMap locals:
      StackMap stack:
        44: iload 8 /* i */
            iload 5 /* len */
            if_icmplt 42
        end local 8 // int i
        45: .line 200
            aload 3 /* bb */
            invokevirtual java.nio.ByteBuffer.getInt:()I
            istore 5 /* len */
        46: .line 201
            aload 0 /* this */
            iload 5 /* len */
            newarray 8
            putfield sun.text.BreakDictionary.rowIndexShifts:[B
        47: .line 202
            aload 3 /* bb */
            aload 0 /* this */
            getfield sun.text.BreakDictionary.rowIndexShifts:[B
            invokevirtual java.nio.ByteBuffer.get:([B)Ljava/nio/ByteBuffer;
            pop
        48: .line 205
            aload 3 /* bb */
            invokevirtual java.nio.ByteBuffer.getInt:()I
            istore 5 /* len */
        49: .line 206
            aload 0 /* this */
            iload 5 /* len */
            newarray 9
            putfield sun.text.BreakDictionary.table:[S
        50: .line 207
            iconst_0
            istore 8 /* i */
        start local 8 // int i
        51: goto 54
        52: .line 208
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.text.BreakDictionary.table:[S
            iload 8 /* i */
            aload 3 /* bb */
            invokevirtual java.nio.ByteBuffer.getShort:()S
            sastore
        53: .line 207
            iinc 8 /* i */ 1
      StackMap locals:
      StackMap stack:
        54: iload 8 /* i */
            iload 5 /* len */
            if_icmplt 52
        end local 8 // int i
        55: .line 212
            aload 3 /* bb */
            invokevirtual java.nio.ByteBuffer.getInt:()I
            istore 5 /* len */
        56: .line 213
            iload 5 /* len */
            newarray 10
            astore 8 /* temp3 */
        start local 8 // int[] temp3
        57: .line 214
            iconst_0
            istore 9 /* i */
        start local 9 // int i
        58: goto 61
        59: .line 215
      StackMap locals: sun.text.BreakDictionary java.lang.String byte[] java.nio.ByteBuffer int int short[] byte[] int[] int
      StackMap stack:
            aload 8 /* temp3 */
            iload 9 /* i */
            aload 3 /* bb */
            invokevirtual java.nio.ByteBuffer.getInt:()I
            iastore
        60: .line 214
            iinc 9 /* i */ 1
      StackMap locals:
      StackMap stack:
        61: iload 9 /* i */
            iload 5 /* len */
            if_icmplt 59
        end local 9 // int i
        62: .line 217
            getstatic sun.text.BreakDictionary.$assertionsDisabled:Z
            ifne 63
            aload 3 /* bb */
            invokevirtual java.nio.ByteBuffer.position:()I
            aload 3 /* bb */
            invokevirtual java.nio.ByteBuffer.limit:()I
            if_icmpeq 63
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        63: .line 219
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            new sun.text.SupplementaryCharacterData
            dup
            aload 8 /* temp3 */
            invokespecial sun.text.SupplementaryCharacterData.<init>:([I)V
            putfield sun.text.BreakDictionary.supplementaryCharColumnMap:Lsun/text/SupplementaryCharacterData;
        64: .line 220
            return
        end local 8 // int[] temp3
        end local 7 // byte[] temp2
        end local 6 // short[] temp
        end local 5 // int len
        end local 4 // int version
        end local 3 // java.nio.ByteBuffer bb
        end local 2 // byte[] dictionaryData
        end local 1 // java.lang.String dictionaryName
        end local 0 // sun.text.BreakDictionary this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   65     0            this  Lsun/text/BreakDictionary;
            0   65     1  dictionaryName  Ljava/lang/String;
            0   65     2  dictionaryData  [B
            1   65     3              bb  Ljava/nio/ByteBuffer;
            2   65     4         version  I
            7   65     5             len  I
           13   65     6            temp  [S
           14   18     7               i  I
           20   65     7           temp2  [B
           27   31     8               i  I
           34   38     8               i  I
           41   45     8               i  I
           51   55     8               i  I
           57   65     8           temp3  [I
           58   62     9               i  I
    MethodParameters:
                Name  Flags
      dictionaryName  
      dictionaryData  

  public final short getNextStateFromCharacter(int, int);
    descriptor: (II)S
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // sun.text.BreakDictionary this
        start local 1 // int row
        start local 2 // int ch
         0: .line 235
            iload 2 /* ch */
            ldc 65536
            if_icmpge 3
         1: .line 236
            aload 0 /* this */
            getfield sun.text.BreakDictionary.columnMap:Lsun/text/CompactByteArray;
            iload 2 /* ch */
            i2c
            invokevirtual sun.text.CompactByteArray.elementAt:(C)B
            istore 3 /* col */
        start local 3 // int col
         2: .line 237
            goto 4
        end local 3 // int col
         3: .line 238
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.text.BreakDictionary.supplementaryCharColumnMap:Lsun/text/SupplementaryCharacterData;
            iload 2 /* ch */
            invokevirtual sun.text.SupplementaryCharacterData.getValue:(I)I
            istore 3 /* col */
        start local 3 // int col
         4: .line 240
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* row */
            iload 3 /* col */
            invokevirtual sun.text.BreakDictionary.getNextState:(II)S
            ireturn
        end local 3 // int col
        end local 2 // int ch
        end local 1 // int row
        end local 0 // sun.text.BreakDictionary this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lsun/text/BreakDictionary;
            0    5     1   row  I
            0    5     2    ch  I
            2    3     3   col  I
            4    5     3   col  I
    MethodParameters:
      Name  Flags
      row   
      ch    

  public final short getNextState(int, int);
    descriptor: (II)S
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // sun.text.BreakDictionary this
        start local 1 // int row
        start local 2 // int col
         0: .line 255
            aload 0 /* this */
            iload 1 /* row */
            iload 2 /* col */
            invokevirtual sun.text.BreakDictionary.cellIsPopulated:(II)Z
            ifeq 2
         1: .line 262
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.text.BreakDictionary.rowIndex:[S
            iload 1 /* row */
            saload
            iload 2 /* col */
            aload 0 /* this */
            getfield sun.text.BreakDictionary.rowIndexShifts:[B
            iload 1 /* row */
            baload
            iadd
            invokevirtual sun.text.BreakDictionary.internalAt:(II)S
            ireturn
         2: .line 265
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 2 // int col
        end local 1 // int row
        end local 0 // sun.text.BreakDictionary this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/text/BreakDictionary;
            0    3     1   row  I
            0    3     2   col  I
    MethodParameters:
      Name  Flags
      row   
      col   

  private boolean cellIsPopulated(int, int);
    descriptor: (II)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // sun.text.BreakDictionary this
        start local 1 // int row
        start local 2 // int col
         0: .line 277
            aload 0 /* this */
            getfield sun.text.BreakDictionary.rowIndexFlagsIndex:[S
            iload 1 /* row */
            saload
            ifge 3
         1: .line 278
            iload 2 /* col */
            aload 0 /* this */
            getfield sun.text.BreakDictionary.rowIndexFlagsIndex:[S
            iload 1 /* row */
            saload
            ineg
            if_icmpne 2
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         2: iconst_0
            ireturn
         3: .line 288
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.text.BreakDictionary.rowIndexFlags:[I
            aload 0 /* this */
            getfield sun.text.BreakDictionary.rowIndexFlagsIndex:[S
            iload 1 /* row */
            saload
            iload 2 /* col */
            iconst_5
            ishr
            iadd
            iaload
            istore 3 /* flags */
        start local 3 // int flags
         4: .line 289
            iload 3 /* flags */
            iconst_1
            iload 2 /* col */
            bipush 31
            iand
            ishl
            iand
            ifeq 5
            iconst_1
            ireturn
      StackMap locals: int
      StackMap stack:
         5: iconst_0
            ireturn
        end local 3 // int flags
        end local 2 // int col
        end local 1 // int row
        end local 0 // sun.text.BreakDictionary this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lsun/text/BreakDictionary;
            0    6     1    row  I
            0    6     2    col  I
            4    6     3  flags  I
    MethodParameters:
      Name  Flags
      row   
      col   

  private short internalAt(int, int);
    descriptor: (II)S
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // sun.text.BreakDictionary this
        start local 1 // int row
        start local 2 // int col
         0: .line 304
            aload 0 /* this */
            getfield sun.text.BreakDictionary.table:[S
            iload 1 /* row */
            aload 0 /* this */
            getfield sun.text.BreakDictionary.numCols:I
            imul
            iload 2 /* col */
            iadd
            saload
            ireturn
        end local 2 // int col
        end local 1 // int row
        end local 0 // sun.text.BreakDictionary this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/text/BreakDictionary;
            0    1     1   row  I
            0    1     2   col  I
    MethodParameters:
      Name  Flags
      row   
      col   
}
SourceFile: "BreakDictionary.java"