final class com.ctc.wstx.util.TextBuffer$BufferReader extends java.io.Reader
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: com.ctc.wstx.util.TextBuffer$BufferReader
  super_class: java.io.Reader
{
  java.util.ArrayList<char[]> _segments;
    descriptor: Ljava/util/ArrayList;
    flags: (0x0000) 
    Signature: Ljava/util/ArrayList<[C>;

  char[] _currentSegment;
    descriptor: [C
    flags: (0x0000) 

  final int _currentLength;
    descriptor: I
    flags: (0x0010) ACC_FINAL

  int _segmentIndex;
    descriptor: I
    flags: (0x0000) 

  int _segmentOffset;
    descriptor: I
    flags: (0x0000) 

  int _currentOffset;
    descriptor: I
    flags: (0x0000) 

  public void <init>(java.util.ArrayList<char[]>, char[], );
    descriptor: (Ljava/util/ArrayList;[CI)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // com.ctc.wstx.util.TextBuffer$BufferReader this
        start local 1 // java.util.ArrayList segs
        start local 2 // char[] currSeg
        start local 3 // int currSegLen
         0: .line 1280
            aload 0 /* this */
            invokespecial java.io.Reader.<init>:()V
         1: .line 1282
            aload 0 /* this */
            aload 1 /* segs */
            putfield com.ctc.wstx.util.TextBuffer$BufferReader._segments:Ljava/util/ArrayList;
         2: .line 1283
            aload 0 /* this */
            aload 2 /* currSeg */
            putfield com.ctc.wstx.util.TextBuffer$BufferReader._currentSegment:[C
         3: .line 1284
            aload 0 /* this */
            iload 3 /* currSegLen */
            putfield com.ctc.wstx.util.TextBuffer$BufferReader._currentLength:I
         4: .line 1286
            aload 0 /* this */
            iconst_0
            putfield com.ctc.wstx.util.TextBuffer$BufferReader._segmentIndex:I
         5: .line 1287
            aload 0 /* this */
            aload 0 /* this */
            iconst_0
            dup_x1
            putfield com.ctc.wstx.util.TextBuffer$BufferReader._currentOffset:I
            putfield com.ctc.wstx.util.TextBuffer$BufferReader._segmentOffset:I
         6: .line 1288
            return
        end local 3 // int currSegLen
        end local 2 // char[] currSeg
        end local 1 // java.util.ArrayList segs
        end local 0 // com.ctc.wstx.util.TextBuffer$BufferReader this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    7     0        this  Lcom/ctc/wstx/util/TextBuffer$BufferReader;
            0    7     1        segs  Ljava/util/ArrayList<[C>;
            0    7     2     currSeg  [C
            0    7     3  currSegLen  I
    Signature: (Ljava/util/ArrayList<[C>;[CI)V
    MethodParameters:
            Name  Flags
      segs        
      currSeg     
      currSegLen  

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.ctc.wstx.util.TextBuffer$BufferReader this
         0: .line 1292
            aload 0 /* this */
            aconst_null
            putfield com.ctc.wstx.util.TextBuffer$BufferReader._segments:Ljava/util/ArrayList;
         1: .line 1293
            aload 0 /* this */
            aconst_null
            putfield com.ctc.wstx.util.TextBuffer$BufferReader._currentSegment:[C
         2: .line 1294
            return
        end local 0 // com.ctc.wstx.util.TextBuffer$BufferReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/ctc/wstx/util/TextBuffer$BufferReader;

  public void mark(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.ctc.wstx.util.TextBuffer$BufferReader this
        start local 1 // int x
         0: .line 1298
            new java.io.IOException
            dup
            ldc "mark() not supported"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // int x
        end local 0 // com.ctc.wstx.util.TextBuffer$BufferReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/ctc/wstx/util/TextBuffer$BufferReader;
            0    1     1     x  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      x     

  public boolean markSupported();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.ctc.wstx.util.TextBuffer$BufferReader this
         0: .line 1303
            iconst_0
            ireturn
        end local 0 // com.ctc.wstx.util.TextBuffer$BufferReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/ctc/wstx/util/TextBuffer$BufferReader;

  public int read(char[], int, int);
    descriptor: ([CII)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=7, args_size=4
        start local 0 // com.ctc.wstx.util.TextBuffer$BufferReader this
        start local 1 // char[] cbuf
        start local 2 // int offset
        start local 3 // int len
         0: .line 1309
            iload 3 /* len */
            iconst_1
            if_icmpge 2
         1: .line 1310
            iconst_0
            ireturn
         2: .line 1313
      StackMap locals:
      StackMap stack:
            iload 2 /* offset */
            istore 4 /* origOffset */
        start local 4 // int origOffset
         3: .line 1315
            goto 18
         4: .line 1316
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.ctc.wstx.util.TextBuffer$BufferReader._segments:Ljava/util/ArrayList;
            aload 0 /* this */
            getfield com.ctc.wstx.util.TextBuffer$BufferReader._segmentIndex:I
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast char[]
            astore 5 /* curr */
        start local 5 // char[] curr
         5: .line 1317
            aload 5 /* curr */
            arraylength
            aload 0 /* this */
            getfield com.ctc.wstx.util.TextBuffer$BufferReader._segmentOffset:I
            isub
            istore 6 /* max */
        start local 6 // int max
         6: .line 1318
            iload 3 /* len */
            iload 6 /* max */
            if_icmpgt 11
         7: .line 1319
            aload 5 /* curr */
            aload 0 /* this */
            getfield com.ctc.wstx.util.TextBuffer$BufferReader._segmentOffset:I
            aload 1 /* cbuf */
            iload 2 /* offset */
            iload 3 /* len */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         8: .line 1320
            aload 0 /* this */
            dup
            getfield com.ctc.wstx.util.TextBuffer$BufferReader._segmentOffset:I
            iload 3 /* len */
            iadd
            putfield com.ctc.wstx.util.TextBuffer$BufferReader._segmentOffset:I
         9: .line 1321
            iload 2 /* offset */
            iload 3 /* len */
            iadd
            istore 2 /* offset */
        10: .line 1322
            iload 2 /* offset */
            iload 4 /* origOffset */
            isub
            ireturn
        11: .line 1325
      StackMap locals: char[] int
      StackMap stack:
            iload 6 /* max */
            ifle 14
        12: .line 1326
            aload 5 /* curr */
            aload 0 /* this */
            getfield com.ctc.wstx.util.TextBuffer$BufferReader._segmentOffset:I
            aload 1 /* cbuf */
            iload 2 /* offset */
            iload 6 /* max */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        13: .line 1327
            iload 2 /* offset */
            iload 6 /* max */
            iadd
            istore 2 /* offset */
        14: .line 1329
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.ctc.wstx.util.TextBuffer$BufferReader._segmentIndex:I
            iconst_1
            iadd
            dup_x1
            putfield com.ctc.wstx.util.TextBuffer$BufferReader._segmentIndex:I
            aload 0 /* this */
            getfield com.ctc.wstx.util.TextBuffer$BufferReader._segments:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            if_icmplt 17
        15: .line 1330
            aload 0 /* this */
            aconst_null
            putfield com.ctc.wstx.util.TextBuffer$BufferReader._segments:Ljava/util/ArrayList;
        16: .line 1331
            goto 18
        17: .line 1332
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield com.ctc.wstx.util.TextBuffer$BufferReader._segmentOffset:I
        end local 6 // int max
        end local 5 // char[] curr
        18: .line 1315
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.ctc.wstx.util.TextBuffer$BufferReader._segments:Ljava/util/ArrayList;
            ifnonnull 4
        19: .line 1337
            iload 3 /* len */
            ifle 33
            aload 0 /* this */
            getfield com.ctc.wstx.util.TextBuffer$BufferReader._currentSegment:[C
            ifnull 33
        20: .line 1338
            aload 0 /* this */
            getfield com.ctc.wstx.util.TextBuffer$BufferReader._currentLength:I
            aload 0 /* this */
            getfield com.ctc.wstx.util.TextBuffer$BufferReader._currentOffset:I
            isub
            istore 5 /* max */
        start local 5 // int max
        21: .line 1339
            iload 3 /* len */
            iload 5 /* max */
            if_icmplt 28
        22: .line 1340
            iload 5 /* max */
            istore 3 /* len */
        23: .line 1341
            aload 0 /* this */
            getfield com.ctc.wstx.util.TextBuffer$BufferReader._currentSegment:[C
            aload 0 /* this */
            getfield com.ctc.wstx.util.TextBuffer$BufferReader._currentOffset:I
        24: .line 1342
            aload 1 /* cbuf */
            iload 2 /* offset */
            iload 3 /* len */
        25: .line 1341
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        26: .line 1343
            aload 0 /* this */
            aconst_null
            putfield com.ctc.wstx.util.TextBuffer$BufferReader._currentSegment:[C
        27: .line 1344
            goto 32
        28: .line 1345
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.ctc.wstx.util.TextBuffer$BufferReader._currentSegment:[C
            aload 0 /* this */
            getfield com.ctc.wstx.util.TextBuffer$BufferReader._currentOffset:I
        29: .line 1346
            aload 1 /* cbuf */
            iload 2 /* offset */
            iload 3 /* len */
        30: .line 1345
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        31: .line 1347
            aload 0 /* this */
            dup
            getfield com.ctc.wstx.util.TextBuffer$BufferReader._currentOffset:I
            iload 3 /* len */
            iadd
            putfield com.ctc.wstx.util.TextBuffer$BufferReader._currentOffset:I
        32: .line 1349
      StackMap locals:
      StackMap stack:
            iload 2 /* offset */
            iload 3 /* len */
            iadd
            istore 2 /* offset */
        end local 5 // int max
        33: .line 1352
      StackMap locals:
      StackMap stack:
            iload 4 /* origOffset */
            iload 2 /* offset */
            if_icmpne 34
            iconst_m1
            goto 35
      StackMap locals:
      StackMap stack:
        34: iload 2 /* offset */
            iload 4 /* origOffset */
            isub
      StackMap locals:
      StackMap stack: int
        35: ireturn
        end local 4 // int origOffset
        end local 3 // int len
        end local 2 // int offset
        end local 1 // char[] cbuf
        end local 0 // com.ctc.wstx.util.TextBuffer$BufferReader this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   36     0        this  Lcom/ctc/wstx/util/TextBuffer$BufferReader;
            0   36     1        cbuf  [C
            0   36     2      offset  I
            0   36     3         len  I
            3   36     4  origOffset  I
            5   18     5        curr  [C
            6   18     6         max  I
           21   33     5         max  I
    MethodParameters:
        Name  Flags
      cbuf    
      offset  
      len     

  public boolean ready();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.ctc.wstx.util.TextBuffer$BufferReader this
         0: .line 1357
            iconst_1
            ireturn
        end local 0 // com.ctc.wstx.util.TextBuffer$BufferReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/ctc/wstx/util/TextBuffer$BufferReader;

  public void reset();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.ctc.wstx.util.TextBuffer$BufferReader this
         0: .line 1363
            new java.io.IOException
            dup
            ldc "reset() not supported"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // com.ctc.wstx.util.TextBuffer$BufferReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/ctc/wstx/util/TextBuffer$BufferReader;
    Exceptions:
      throws java.io.IOException

  public long skip(long);
    descriptor: (J)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=2
        start local 0 // com.ctc.wstx.util.TextBuffer$BufferReader this
        start local 1 // long amount
         0: .line 1372
            lload 1 /* amount */
            lconst_0
            lcmp
            ifge 2
         1: .line 1373
            lconst_0
            lreturn
         2: .line 1376
      StackMap locals:
      StackMap stack:
            lload 1 /* amount */
            lstore 3 /* origAmount */
        start local 3 // long origAmount
         3: .line 1378
            goto 14
         4: .line 1379
      StackMap locals: long
      StackMap stack:
            aload 0 /* this */
            getfield com.ctc.wstx.util.TextBuffer$BufferReader._segments:Ljava/util/ArrayList;
            aload 0 /* this */
            getfield com.ctc.wstx.util.TextBuffer$BufferReader._segmentIndex:I
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast char[]
            astore 5 /* curr */
        start local 5 // char[] curr
         5: .line 1380
            aload 5 /* curr */
            arraylength
            aload 0 /* this */
            getfield com.ctc.wstx.util.TextBuffer$BufferReader._segmentOffset:I
            isub
            istore 6 /* max */
        start local 6 // int max
         6: .line 1381
            iload 6 /* max */
            i2l
            lload 1 /* amount */
            lcmp
            iflt 9
         7: .line 1382
            aload 0 /* this */
            dup
            getfield com.ctc.wstx.util.TextBuffer$BufferReader._segmentOffset:I
            lload 1 /* amount */
            l2i
            iadd
            putfield com.ctc.wstx.util.TextBuffer$BufferReader._segmentOffset:I
         8: .line 1383
            lload 3 /* origAmount */
            lreturn
         9: .line 1386
      StackMap locals: char[] int
      StackMap stack:
            lload 1 /* amount */
            iload 6 /* max */
            i2l
            lsub
            lstore 1 /* amount */
        10: .line 1387
            aload 0 /* this */
            dup
            getfield com.ctc.wstx.util.TextBuffer$BufferReader._segmentIndex:I
            iconst_1
            iadd
            dup_x1
            putfield com.ctc.wstx.util.TextBuffer$BufferReader._segmentIndex:I
            aload 0 /* this */
            getfield com.ctc.wstx.util.TextBuffer$BufferReader._segments:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            if_icmplt 13
        11: .line 1388
            aload 0 /* this */
            aconst_null
            putfield com.ctc.wstx.util.TextBuffer$BufferReader._segments:Ljava/util/ArrayList;
        12: .line 1389
            goto 14
        13: .line 1390
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield com.ctc.wstx.util.TextBuffer$BufferReader._segmentOffset:I
        end local 6 // int max
        end local 5 // char[] curr
        14: .line 1378
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.ctc.wstx.util.TextBuffer$BufferReader._segments:Ljava/util/ArrayList;
            ifnonnull 4
        15: .line 1395
            lload 1 /* amount */
            lconst_0
            lcmp
            ifle 23
            aload 0 /* this */
            getfield com.ctc.wstx.util.TextBuffer$BufferReader._currentSegment:[C
            ifnull 23
        16: .line 1396
            aload 0 /* this */
            getfield com.ctc.wstx.util.TextBuffer$BufferReader._currentLength:I
            aload 0 /* this */
            getfield com.ctc.wstx.util.TextBuffer$BufferReader._currentOffset:I
            isub
            istore 5 /* max */
        start local 5 // int max
        17: .line 1397
            lload 1 /* amount */
            iload 5 /* max */
            i2l
            lcmp
            iflt 21
        18: .line 1398
            lload 1 /* amount */
            iload 5 /* max */
            i2l
            lsub
            lstore 1 /* amount */
        19: .line 1399
            aload 0 /* this */
            aconst_null
            putfield com.ctc.wstx.util.TextBuffer$BufferReader._currentSegment:[C
        20: .line 1400
            goto 23
        21: .line 1401
      StackMap locals: int
      StackMap stack:
            lconst_0
            lstore 1 /* amount */
        22: .line 1402
            aload 0 /* this */
            dup
            getfield com.ctc.wstx.util.TextBuffer$BufferReader._currentOffset:I
            lload 1 /* amount */
            l2i
            iadd
            putfield com.ctc.wstx.util.TextBuffer$BufferReader._currentOffset:I
        end local 5 // int max
        23: .line 1406
      StackMap locals:
      StackMap stack:
            lload 1 /* amount */
            lload 3 /* origAmount */
            lcmp
            ifne 24
            ldc -1
            goto 25
      StackMap locals:
      StackMap stack:
        24: lload 3 /* origAmount */
            lload 1 /* amount */
            lsub
      StackMap locals:
      StackMap stack: long
        25: lreturn
        end local 3 // long origAmount
        end local 1 // long amount
        end local 0 // com.ctc.wstx.util.TextBuffer$BufferReader this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   26     0        this  Lcom/ctc/wstx/util/TextBuffer$BufferReader;
            0   26     1      amount  J
            3   26     3  origAmount  J
            5   14     5        curr  [C
            6   14     6         max  I
           17   23     5         max  I
    MethodParameters:
        Name  Flags
      amount  
}
SourceFile: "TextBuffer.java"
NestHost: com.ctc.wstx.util.TextBuffer
InnerClasses:
  private final BufferReader = com.ctc.wstx.util.TextBuffer$BufferReader of com.ctc.wstx.util.TextBuffer