public final class com.ctc.wstx.io.ISOLatinReader extends com.ctc.wstx.io.BaseReader
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: com.ctc.wstx.io.ISOLatinReader
  super_class: com.ctc.wstx.io.BaseReader
{
  boolean mXml11;
    descriptor: Z
    flags: (0x0000) 

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

  public void <init>(com.ctc.wstx.api.ReaderConfig, java.io.InputStream, byte[], int, int, boolean);
    descriptor: (Lcom/ctc/wstx/api/ReaderConfig;Ljava/io/InputStream;[BIIZ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=7, args_size=7
        start local 0 // com.ctc.wstx.io.ISOLatinReader this
        start local 1 // com.ctc.wstx.api.ReaderConfig cfg
        start local 2 // java.io.InputStream in
        start local 3 // byte[] buf
        start local 4 // int ptr
        start local 5 // int len
        start local 6 // boolean recycleBuffer
         0: .line 49
            aload 0 /* this */
            aload 1 /* cfg */
            aload 2 /* in */
            aload 3 /* buf */
            iload 4 /* ptr */
            iload 5 /* len */
            iload 6 /* recycleBuffer */
            invokespecial com.ctc.wstx.io.BaseReader.<init>:(Lcom/ctc/wstx/api/ReaderConfig;Ljava/io/InputStream;[BIIZ)V
         1: .line 33
            aload 0 /* this */
            iconst_0
            putfield com.ctc.wstx.io.ISOLatinReader.mXml11:Z
         2: .line 38
            aload 0 /* this */
            iconst_0
            putfield com.ctc.wstx.io.ISOLatinReader.mByteCount:I
         3: .line 50
            return
        end local 6 // boolean recycleBuffer
        end local 5 // int len
        end local 4 // int ptr
        end local 3 // byte[] buf
        end local 2 // java.io.InputStream in
        end local 1 // com.ctc.wstx.api.ReaderConfig cfg
        end local 0 // com.ctc.wstx.io.ISOLatinReader this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    4     0           this  Lcom/ctc/wstx/io/ISOLatinReader;
            0    4     1            cfg  Lcom/ctc/wstx/api/ReaderConfig;
            0    4     2             in  Ljava/io/InputStream;
            0    4     3            buf  [B
            0    4     4            ptr  I
            0    4     5            len  I
            0    4     6  recycleBuffer  Z
    MethodParameters:
               Name  Flags
      cfg            
      in             
      buf            
      ptr            
      len            
      recycleBuffer  

  public void setXmlCompliancy(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.ctc.wstx.io.ISOLatinReader this
        start local 1 // int xmlVersion
         0: .line 54
            aload 0 /* this */
            iload 1 /* xmlVersion */
            sipush 272
            if_icmpne 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack: com.ctc.wstx.io.ISOLatinReader
         1: iconst_0
      StackMap locals: com.ctc.wstx.io.ISOLatinReader int
      StackMap stack: com.ctc.wstx.io.ISOLatinReader int
         2: putfield com.ctc.wstx.io.ISOLatinReader.mXml11:Z
         3: .line 55
            return
        end local 1 // int xmlVersion
        end local 0 // com.ctc.wstx.io.ISOLatinReader this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0        this  Lcom/ctc/wstx/io/ISOLatinReader;
            0    4     1  xmlVersion  I
    MethodParameters:
            Name  Flags
      xmlVersion  

  public int read(char[], int, int);
    descriptor: ([CII)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=9, args_size=4
        start local 0 // com.ctc.wstx.io.ISOLatinReader this
        start local 1 // char[] cbuf
        start local 2 // int start
        start local 3 // int len
         0: .line 67
            iload 2 /* start */
            iflt 1
            iload 2 /* start */
            iload 3 /* len */
            iadd
            aload 1 /* cbuf */
            arraylength
            if_icmple 2
         1: .line 68
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* cbuf */
            iload 2 /* start */
            iload 3 /* len */
            invokevirtual com.ctc.wstx.io.ISOLatinReader.reportBounds:([CII)V
         2: .line 71
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.ctc.wstx.io.ISOLatinReader.mByteBuffer:[B
            ifnonnull 4
         3: .line 72
            iconst_m1
            ireturn
         4: .line 74
      StackMap locals:
      StackMap stack:
            iload 3 /* len */
            iconst_1
            if_icmpge 6
         5: .line 75
            iconst_0
            ireturn
         6: .line 79
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.ctc.wstx.io.ISOLatinReader.mByteBufferEnd:I
            aload 0 /* this */
            getfield com.ctc.wstx.io.ISOLatinReader.mBytePtr:I
            isub
            istore 4 /* avail */
        start local 4 // int avail
         7: .line 80
            iload 4 /* avail */
            ifgt 16
         8: .line 81
            aload 0 /* this */
            dup
            getfield com.ctc.wstx.io.ISOLatinReader.mByteCount:I
            aload 0 /* this */
            getfield com.ctc.wstx.io.ISOLatinReader.mByteBufferEnd:I
            iadd
            putfield com.ctc.wstx.io.ISOLatinReader.mByteCount:I
         9: .line 83
            aload 0 /* this */
            invokevirtual com.ctc.wstx.io.ISOLatinReader.readBytes:()I
            istore 5 /* count */
        start local 5 // int count
        10: .line 84
            iload 5 /* count */
            ifgt 15
        11: .line 85
            iload 5 /* count */
            ifne 13
        12: .line 86
            aload 0 /* this */
            invokevirtual com.ctc.wstx.io.ISOLatinReader.reportStrangeStream:()V
        13: .line 91
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.ctc.wstx.io.ISOLatinReader.freeBuffers:()V
        14: .line 92
            iconst_m1
            ireturn
        15: .line 94
      StackMap locals:
      StackMap stack:
            iload 5 /* count */
            istore 4 /* avail */
        end local 5 // int count
        16: .line 101
      StackMap locals:
      StackMap stack:
            iload 3 /* len */
            iload 4 /* avail */
            if_icmple 18
        17: .line 102
            iload 4 /* avail */
            istore 3 /* len */
        18: .line 104
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.ctc.wstx.io.ISOLatinReader.mBytePtr:I
            istore 5 /* i */
        start local 5 // int i
        19: .line 105
            iload 5 /* i */
            iload 3 /* len */
            iadd
            istore 6 /* last */
        start local 6 // int last
        20: .line 107
            aload 0 /* this */
            getfield com.ctc.wstx.io.ISOLatinReader.mXml11:Z
            ifeq 35
        21: .line 108
            goto 32
        22: .line 109
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield com.ctc.wstx.io.ISOLatinReader.mByteBuffer:[B
            iload 5 /* i */
            iinc 5 /* i */ 1
            baload
            sipush 255
            iand
            i2c
            istore 7 /* c */
        start local 7 // char c
        23: .line 110
            iload 7 /* c */
            bipush 127
            if_icmplt 31
        24: .line 111
            iload 7 /* c */
            sipush 159
            if_icmpgt 31
        25: .line 112
            iload 7 /* c */
            sipush 133
            if_icmpne 28
        26: .line 113
            bipush 10
            istore 7 /* c */
        27: .line 114
            goto 31
      StackMap locals: int
      StackMap stack:
        28: iload 7 /* c */
            bipush 127
            if_icmplt 31
        29: .line 115
            aload 0 /* this */
            getfield com.ctc.wstx.io.ISOLatinReader.mByteCount:I
            iload 5 /* i */
            iadd
            istore 8 /* pos */
        start local 8 // int pos
        30: .line 116
            aload 0 /* this */
            iload 7 /* c */
            iload 8 /* pos */
            iload 8 /* pos */
            invokevirtual com.ctc.wstx.io.ISOLatinReader.reportInvalidXml11:(III)V
        end local 8 // int pos
        31: .line 120
      StackMap locals:
      StackMap stack:
            aload 1 /* cbuf */
            iload 2 /* start */
            iinc 2 /* start */ 1
            iload 7 /* c */
            castore
        end local 7 // char c
        32: .line 108
      StackMap locals:
      StackMap stack:
            iload 5 /* i */
            iload 6 /* last */
            if_icmplt 22
        33: .line 123
            goto 36
        34: .line 125
      StackMap locals:
      StackMap stack:
            aload 1 /* cbuf */
            iload 2 /* start */
            iinc 2 /* start */ 1
            aload 0 /* this */
            getfield com.ctc.wstx.io.ISOLatinReader.mByteBuffer:[B
            iload 5 /* i */
            iinc 5 /* i */ 1
            baload
            sipush 255
            iand
            i2c
            castore
        35: .line 124
      StackMap locals:
      StackMap stack:
            iload 5 /* i */
            iload 6 /* last */
            if_icmplt 34
        36: .line 129
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 6 /* last */
            putfield com.ctc.wstx.io.ISOLatinReader.mBytePtr:I
        37: .line 130
            iload 3 /* len */
            ireturn
        end local 6 // int last
        end local 5 // int i
        end local 4 // int avail
        end local 3 // int len
        end local 2 // int start
        end local 1 // char[] cbuf
        end local 0 // com.ctc.wstx.io.ISOLatinReader this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   38     0   this  Lcom/ctc/wstx/io/ISOLatinReader;
            0   38     1   cbuf  [C
            0   38     2  start  I
            0   38     3    len  I
            7   38     4  avail  I
           10   16     5  count  I
           19   38     5      i  I
           20   38     6   last  I
           23   32     7      c  C
           30   31     8    pos  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
       Name  Flags
      cbuf   
      start  
      len    

  public void close();
    descriptor: ()V
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokespecial com.ctc.wstx.io.BaseReader.close:()V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.io.IOException

  public int read();
    descriptor: ()I
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokespecial com.ctc.wstx.io.BaseReader.read:()I
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.io.IOException
}
SourceFile: "ISOLatinReader.java"