public class org.apache.commons.io.input.BoundedReader extends java.io.Reader
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.commons.io.input.BoundedReader
  super_class: java.io.Reader
{
  private static final int INVALID;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: -1

  private final java.io.Reader target;
    descriptor: Ljava/io/Reader;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

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

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

  private final int maxCharsFromTargetReader;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(java.io.Reader, int);
    descriptor: (Ljava/io/Reader;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.apache.commons.io.input.BoundedReader this
        start local 1 // java.io.Reader target
        start local 2 // int maxCharsFromTargetReader
         0: .line 60
            aload 0 /* this */
            invokespecial java.io.Reader.<init>:()V
         1: .line 45
            aload 0 /* this */
            iconst_0
            putfield org.apache.commons.io.input.BoundedReader.charsRead:I
         2: .line 47
            aload 0 /* this */
            iconst_m1
            putfield org.apache.commons.io.input.BoundedReader.markedAt:I
         3: .line 61
            aload 0 /* this */
            aload 1 /* target */
            putfield org.apache.commons.io.input.BoundedReader.target:Ljava/io/Reader;
         4: .line 62
            aload 0 /* this */
            iload 2 /* maxCharsFromTargetReader */
            putfield org.apache.commons.io.input.BoundedReader.maxCharsFromTargetReader:I
         5: .line 63
            return
        end local 2 // int maxCharsFromTargetReader
        end local 1 // java.io.Reader target
        end local 0 // org.apache.commons.io.input.BoundedReader this
      LocalVariableTable:
        Start  End  Slot                      Name  Signature
            0    6     0                      this  Lorg/apache/commons/io/input/BoundedReader;
            0    6     1                    target  Ljava/io/Reader;
            0    6     2  maxCharsFromTargetReader  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
                          Name  Flags
      target                    final
      maxCharsFromTargetReader  final

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.io.input.BoundedReader this
         0: .line 72
            aload 0 /* this */
            getfield org.apache.commons.io.input.BoundedReader.target:Ljava/io/Reader;
            invokevirtual java.io.Reader.close:()V
         1: .line 73
            return
        end local 0 // org.apache.commons.io.input.BoundedReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/io/input/BoundedReader;
    Exceptions:
      throws java.io.IOException

  public void reset();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.io.input.BoundedReader this
         0: .line 83
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.io.input.BoundedReader.markedAt:I
            putfield org.apache.commons.io.input.BoundedReader.charsRead:I
         1: .line 84
            aload 0 /* this */
            getfield org.apache.commons.io.input.BoundedReader.target:Ljava/io/Reader;
            invokevirtual java.io.Reader.reset:()V
         2: .line 85
            return
        end local 0 // org.apache.commons.io.input.BoundedReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/io/input/BoundedReader;
    Exceptions:
      throws java.io.IOException

  public void mark(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.io.input.BoundedReader this
        start local 1 // int readAheadLimit
         0: .line 102
            aload 0 /* this */
            iload 1 /* readAheadLimit */
            aload 0 /* this */
            getfield org.apache.commons.io.input.BoundedReader.charsRead:I
            isub
            putfield org.apache.commons.io.input.BoundedReader.readAheadLimit:I
         1: .line 104
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.io.input.BoundedReader.charsRead:I
            putfield org.apache.commons.io.input.BoundedReader.markedAt:I
         2: .line 106
            aload 0 /* this */
            getfield org.apache.commons.io.input.BoundedReader.target:Ljava/io/Reader;
            iload 1 /* readAheadLimit */
            invokevirtual java.io.Reader.mark:(I)V
         3: .line 107
            return
        end local 1 // int readAheadLimit
        end local 0 // org.apache.commons.io.input.BoundedReader this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    4     0            this  Lorg/apache/commons/io/input/BoundedReader;
            0    4     1  readAheadLimit  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
                Name  Flags
      readAheadLimit  final

  public int read();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.commons.io.input.BoundedReader this
         0: .line 119
            aload 0 /* this */
            getfield org.apache.commons.io.input.BoundedReader.charsRead:I
            aload 0 /* this */
            getfield org.apache.commons.io.input.BoundedReader.maxCharsFromTargetReader:I
            if_icmplt 2
         1: .line 120
            iconst_m1
            ireturn
         2: .line 123
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.io.input.BoundedReader.markedAt:I
            iflt 4
            aload 0 /* this */
            getfield org.apache.commons.io.input.BoundedReader.charsRead:I
            aload 0 /* this */
            getfield org.apache.commons.io.input.BoundedReader.markedAt:I
            isub
            aload 0 /* this */
            getfield org.apache.commons.io.input.BoundedReader.readAheadLimit:I
            if_icmplt 4
         3: .line 124
            iconst_m1
            ireturn
         4: .line 126
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.apache.commons.io.input.BoundedReader.charsRead:I
            iconst_1
            iadd
            putfield org.apache.commons.io.input.BoundedReader.charsRead:I
         5: .line 127
            aload 0 /* this */
            getfield org.apache.commons.io.input.BoundedReader.target:Ljava/io/Reader;
            invokevirtual java.io.Reader.read:()I
            ireturn
        end local 0 // org.apache.commons.io.input.BoundedReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/commons/io/input/BoundedReader;
    Exceptions:
      throws java.io.IOException

  public int read(char[], int, int);
    descriptor: ([CII)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=4
        start local 0 // org.apache.commons.io.input.BoundedReader this
        start local 1 // char[] cbuf
        start local 2 // int off
        start local 3 // int len
         0: .line 143
            iconst_0
            istore 5 /* i */
        start local 5 // int i
         1: goto 9
         2: .line 144
      StackMap locals: org.apache.commons.io.input.BoundedReader char[] int int top int
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.apache.commons.io.input.BoundedReader.read:()I
            istore 4 /* c */
        start local 4 // int c
         3: .line 145
            iload 4 /* c */
            iconst_m1
            if_icmpne 7
         4: .line 146
            iload 5 /* i */
            ifne 5
            iconst_m1
            goto 6
      StackMap locals: org.apache.commons.io.input.BoundedReader char[] int int int int
      StackMap stack:
         5: iload 5 /* i */
      StackMap locals:
      StackMap stack: int
         6: ireturn
         7: .line 148
      StackMap locals:
      StackMap stack:
            aload 1 /* cbuf */
            iload 2 /* off */
            iload 5 /* i */
            iadd
            iload 4 /* c */
            i2c
            castore
         8: .line 143
            iinc 5 /* i */ 1
        end local 4 // int c
      StackMap locals: org.apache.commons.io.input.BoundedReader char[] int int top int
      StackMap stack:
         9: iload 5 /* i */
            iload 3 /* len */
            if_icmplt 2
        end local 5 // int i
        10: .line 150
            iload 3 /* len */
            ireturn
        end local 3 // int len
        end local 2 // int off
        end local 1 // char[] cbuf
        end local 0 // org.apache.commons.io.input.BoundedReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lorg/apache/commons/io/input/BoundedReader;
            0   11     1  cbuf  [C
            0   11     2   off  I
            0   11     3   len  I
            3    9     4     c  I
            1   10     5     i  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      cbuf  final
      off   final
      len   final
}
SourceFile: "BoundedReader.java"