public abstract class org.apache.batik.util.io.AbstractCharDecoder implements org.apache.batik.util.io.CharDecoder
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: org.apache.batik.util.io.AbstractCharDecoder
  super_class: java.lang.Object
{
  protected static final int BUFFER_SIZE;
    descriptor: I
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL
    ConstantValue: 8192

  protected java.io.InputStream inputStream;
    descriptor: Ljava/io/InputStream;
    flags: (0x0004) ACC_PROTECTED

  protected byte[] buffer;
    descriptor: [B
    flags: (0x0004) ACC_PROTECTED

  protected int position;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected int count;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected void <init>(java.io.InputStream);
    descriptor: (Ljava/io/InputStream;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.batik.util.io.AbstractCharDecoder this
        start local 1 // java.io.InputStream is
         0: .line 61
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 45
            aload 0 /* this */
            sipush 8192
            newarray 8
            putfield org.apache.batik.util.io.AbstractCharDecoder.buffer:[B
         2: .line 62
            aload 0 /* this */
            aload 1 /* is */
            putfield org.apache.batik.util.io.AbstractCharDecoder.inputStream:Ljava/io/InputStream;
         3: .line 63
            return
        end local 1 // java.io.InputStream is
        end local 0 // org.apache.batik.util.io.AbstractCharDecoder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/batik/util/io/AbstractCharDecoder;
            0    4     1    is  Ljava/io/InputStream;
    MethodParameters:
      Name  Flags
      is    

  public void dispose();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.batik.util.io.AbstractCharDecoder this
         0: .line 69
            aload 0 /* this */
            getfield org.apache.batik.util.io.AbstractCharDecoder.inputStream:Ljava/io/InputStream;
            invokevirtual java.io.InputStream.close:()V
         1: .line 70
            aload 0 /* this */
            aconst_null
            putfield org.apache.batik.util.io.AbstractCharDecoder.inputStream:Ljava/io/InputStream;
         2: .line 71
            return
        end local 0 // org.apache.batik.util.io.AbstractCharDecoder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/batik/util/io/AbstractCharDecoder;
    Exceptions:
      throws java.io.IOException

  protected void fillBuffer();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // org.apache.batik.util.io.AbstractCharDecoder this
         0: .line 77
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.batik.util.io.AbstractCharDecoder.inputStream:Ljava/io/InputStream;
            aload 0 /* this */
            getfield org.apache.batik.util.io.AbstractCharDecoder.buffer:[B
            iconst_0
            sipush 8192
            invokevirtual java.io.InputStream.read:([BII)I
            putfield org.apache.batik.util.io.AbstractCharDecoder.count:I
         1: .line 78
            aload 0 /* this */
            iconst_0
            putfield org.apache.batik.util.io.AbstractCharDecoder.position:I
         2: .line 79
            return
        end local 0 // org.apache.batik.util.io.AbstractCharDecoder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/batik/util/io/AbstractCharDecoder;
    Exceptions:
      throws java.io.IOException

  protected void charError(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=7, locals=2, args_size=2
        start local 0 // org.apache.batik.util.io.AbstractCharDecoder this
        start local 1 // java.lang.String encoding
         0: .line 87
            new java.io.IOException
            dup
         1: .line 88
            ldc "invalid.char"
         2: .line 89
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 1 /* encoding */
            aastore
         3: .line 88
            invokestatic org.apache.batik.util.io.Messages.formatMessage:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
         4: .line 87
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // java.lang.String encoding
        end local 0 // org.apache.batik.util.io.AbstractCharDecoder this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/apache/batik/util/io/AbstractCharDecoder;
            0    5     1  encoding  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      encoding  

  protected void endOfStreamError(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=7, locals=2, args_size=2
        start local 0 // org.apache.batik.util.io.AbstractCharDecoder this
        start local 1 // java.lang.String encoding
         0: .line 97
            new java.io.IOException
            dup
         1: .line 98
            ldc "end.of.stream"
         2: .line 99
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 1 /* encoding */
            aastore
         3: .line 98
            invokestatic org.apache.batik.util.io.Messages.formatMessage:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
         4: .line 97
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // java.lang.String encoding
        end local 0 // org.apache.batik.util.io.AbstractCharDecoder this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/apache/batik/util/io/AbstractCharDecoder;
            0    5     1  encoding  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      encoding  
}
SourceFile: "AbstractCharDecoder.java"