public abstract class java.io.FilterReader extends java.io.Reader
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: java.io.FilterReader
  super_class: java.io.Reader
{
  protected java.io.Reader in;
    descriptor: Ljava/io/Reader;
    flags: (0x0004) ACC_PROTECTED

  protected void <init>(java.io.Reader);
    descriptor: (Ljava/io/Reader;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.io.FilterReader this
        start local 1 // java.io.Reader in
         0: .line 55
            aload 0 /* this */
            aload 1 /* in */
            invokespecial java.io.Reader.<init>:(Ljava/lang/Object;)V
         1: .line 56
            aload 0 /* this */
            aload 1 /* in */
            putfield java.io.FilterReader.in:Ljava/io/Reader;
         2: .line 57
            return
        end local 1 // java.io.Reader in
        end local 0 // java.io.FilterReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljava/io/FilterReader;
            0    3     1    in  Ljava/io/Reader;
    MethodParameters:
      Name  Flags
      in    

  public int read();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.io.FilterReader this
         0: .line 65
            aload 0 /* this */
            getfield java.io.FilterReader.in:Ljava/io/Reader;
            invokevirtual java.io.Reader.read:()I
            ireturn
        end local 0 // java.io.FilterReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/io/FilterReader;
    Exceptions:
      throws java.io.IOException

  public int read(char[], int, int);
    descriptor: ([CII)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // java.io.FilterReader this
        start local 1 // char[] cbuf
        start local 2 // int off
        start local 3 // int len
         0: .line 74
            aload 0 /* this */
            getfield java.io.FilterReader.in:Ljava/io/Reader;
            aload 1 /* cbuf */
            iload 2 /* off */
            iload 3 /* len */
            invokevirtual java.io.Reader.read:([CII)I
            ireturn
        end local 3 // int len
        end local 2 // int off
        end local 1 // char[] cbuf
        end local 0 // java.io.FilterReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/io/FilterReader;
            0    1     1  cbuf  [C
            0    1     2   off  I
            0    1     3   len  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      cbuf  
      off   
      len   

  public long skip(long);
    descriptor: (J)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // java.io.FilterReader this
        start local 1 // long n
         0: .line 83
            aload 0 /* this */
            getfield java.io.FilterReader.in:Ljava/io/Reader;
            lload 1 /* n */
            invokevirtual java.io.Reader.skip:(J)J
            lreturn
        end local 1 // long n
        end local 0 // java.io.FilterReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/io/FilterReader;
            0    1     1     n  J
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      n     

  public boolean ready();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.io.FilterReader this
         0: .line 92
            aload 0 /* this */
            getfield java.io.FilterReader.in:Ljava/io/Reader;
            invokevirtual java.io.Reader.ready:()Z
            ireturn
        end local 0 // java.io.FilterReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/io/FilterReader;
    Exceptions:
      throws java.io.IOException

  public boolean markSupported();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.io.FilterReader this
         0: .line 99
            aload 0 /* this */
            getfield java.io.FilterReader.in:Ljava/io/Reader;
            invokevirtual java.io.Reader.markSupported:()Z
            ireturn
        end local 0 // java.io.FilterReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/io/FilterReader;

  public void mark(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.io.FilterReader this
        start local 1 // int readAheadLimit
         0: .line 108
            aload 0 /* this */
            getfield java.io.FilterReader.in:Ljava/io/Reader;
            iload 1 /* readAheadLimit */
            invokevirtual java.io.Reader.mark:(I)V
         1: .line 109
            return
        end local 1 // int readAheadLimit
        end local 0 // java.io.FilterReader this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    2     0            this  Ljava/io/FilterReader;
            0    2     1  readAheadLimit  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
                Name  Flags
      readAheadLimit  

  public void reset();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.io.FilterReader this
         0: .line 117
            aload 0 /* this */
            getfield java.io.FilterReader.in:Ljava/io/Reader;
            invokevirtual java.io.Reader.reset:()V
         1: .line 118
            return
        end local 0 // java.io.FilterReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/io/FilterReader;
    Exceptions:
      throws java.io.IOException

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.io.FilterReader this
         0: .line 121
            aload 0 /* this */
            getfield java.io.FilterReader.in:Ljava/io/Reader;
            invokevirtual java.io.Reader.close:()V
         1: .line 122
            return
        end local 0 // java.io.FilterReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/io/FilterReader;
    Exceptions:
      throws java.io.IOException
}
SourceFile: "FilterReader.java"