public class com.sun.org.apache.xerces.internal.impl.io.UCSReader extends java.io.Reader
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.sun.org.apache.xerces.internal.impl.io.UCSReader
  super_class: java.io.Reader
{
  public static final int DEFAULT_BUFFER_SIZE;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 8192

  public static final short UCS2LE;
    descriptor: S
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  public static final short UCS2BE;
    descriptor: S
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 2

  public static final short UCS4LE;
    descriptor: S
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 4

  public static final short UCS4BE;
    descriptor: S
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 8

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

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

  protected short fEncoding;
    descriptor: S
    flags: (0x0004) ACC_PROTECTED

  public void <init>(java.io.InputStream, short);
    descriptor: (Ljava/io/InputStream;S)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // com.sun.org.apache.xerces.internal.impl.io.UCSReader this
        start local 1 // java.io.InputStream inputStream
        start local 2 // short encoding
         0: .line 83
            aload 0 /* this */
            aload 1 /* inputStream */
            sipush 8192
            iload 2 /* encoding */
            invokespecial com.sun.org.apache.xerces.internal.impl.io.UCSReader.<init>:(Ljava/io/InputStream;IS)V
         1: .line 84
            return
        end local 2 // short encoding
        end local 1 // java.io.InputStream inputStream
        end local 0 // com.sun.org.apache.xerces.internal.impl.io.UCSReader this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lcom/sun/org/apache/xerces/internal/impl/io/UCSReader;
            0    2     1  inputStream  Ljava/io/InputStream;
            0    2     2     encoding  S
    MethodParameters:
             Name  Flags
      inputStream  
      encoding     

  public void <init>(java.io.InputStream, int, short);
    descriptor: (Ljava/io/InputStream;IS)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=4
        start local 0 // com.sun.org.apache.xerces.internal.impl.io.UCSReader this
        start local 1 // java.io.InputStream inputStream
        start local 2 // int size
        start local 3 // short encoding
         0: .line 95
            aload 0 /* this */
            invokespecial java.io.Reader.<init>:()V
         1: .line 96
            aload 0 /* this */
            aload 1 /* inputStream */
            putfield com.sun.org.apache.xerces.internal.impl.io.UCSReader.fInputStream:Ljava/io/InputStream;
         2: .line 97
            invokestatic com.sun.xml.internal.stream.util.ThreadLocalBufferAllocator.getBufferAllocator:()Lcom/sun/xml/internal/stream/util/BufferAllocator;
            astore 4 /* ba */
        start local 4 // com.sun.xml.internal.stream.util.BufferAllocator ba
         3: .line 98
            aload 0 /* this */
            aload 4 /* ba */
            iload 2 /* size */
            invokevirtual com.sun.xml.internal.stream.util.BufferAllocator.getByteBuffer:(I)[B
            putfield com.sun.org.apache.xerces.internal.impl.io.UCSReader.fBuffer:[B
         4: .line 99
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.impl.io.UCSReader.fBuffer:[B
            ifnonnull 6
         5: .line 100
            aload 0 /* this */
            iload 2 /* size */
            newarray 8
            putfield com.sun.org.apache.xerces.internal.impl.io.UCSReader.fBuffer:[B
         6: .line 102
      StackMap locals: com.sun.org.apache.xerces.internal.impl.io.UCSReader java.io.InputStream int int com.sun.xml.internal.stream.util.BufferAllocator
      StackMap stack:
            aload 0 /* this */
            iload 3 /* encoding */
            putfield com.sun.org.apache.xerces.internal.impl.io.UCSReader.fEncoding:S
         7: .line 103
            return
        end local 4 // com.sun.xml.internal.stream.util.BufferAllocator ba
        end local 3 // short encoding
        end local 2 // int size
        end local 1 // java.io.InputStream inputStream
        end local 0 // com.sun.org.apache.xerces.internal.impl.io.UCSReader this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    8     0         this  Lcom/sun/org/apache/xerces/internal/impl/io/UCSReader;
            0    8     1  inputStream  Ljava/io/InputStream;
            0    8     2         size  I
            0    8     3     encoding  S
            3    8     4           ba  Lcom/sun/xml/internal/stream/util/BufferAllocator;
    MethodParameters:
             Name  Flags
      inputStream  
      size         
      encoding     

  public int read();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=1
        start local 0 // com.sun.org.apache.xerces.internal.impl.io.UCSReader this
         0: .line 123
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.impl.io.UCSReader.fInputStream:Ljava/io/InputStream;
            invokevirtual java.io.InputStream.read:()I
            sipush 255
            iand
            istore 1 /* b0 */
        start local 1 // int b0
         1: .line 124
            iload 1 /* b0 */
            sipush 255
            if_icmpne 3
         2: .line 125
            iconst_m1
            ireturn
         3: .line 126
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.impl.io.UCSReader.fInputStream:Ljava/io/InputStream;
            invokevirtual java.io.InputStream.read:()I
            sipush 255
            iand
            istore 2 /* b1 */
        start local 2 // int b1
         4: .line 127
            iload 2 /* b1 */
            sipush 255
            if_icmpne 6
         5: .line 128
            iconst_m1
            ireturn
         6: .line 129
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.impl.io.UCSReader.fEncoding:S
            iconst_4
            if_icmplt 17
         7: .line 130
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.impl.io.UCSReader.fInputStream:Ljava/io/InputStream;
            invokevirtual java.io.InputStream.read:()I
            sipush 255
            iand
            istore 3 /* b2 */
        start local 3 // int b2
         8: .line 131
            iload 3 /* b2 */
            sipush 255
            if_icmpne 10
         9: .line 132
            iconst_m1
            ireturn
        10: .line 133
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.impl.io.UCSReader.fInputStream:Ljava/io/InputStream;
            invokevirtual java.io.InputStream.read:()I
            sipush 255
            iand
            istore 4 /* b3 */
        start local 4 // int b3
        11: .line 134
            iload 4 /* b3 */
            sipush 255
            if_icmpne 13
        12: .line 135
            iconst_m1
            ireturn
        13: .line 136
      StackMap locals: int
      StackMap stack:
            getstatic java.lang.System.err:Ljava/io/PrintStream;
            new java.lang.StringBuilder
            dup
            ldc "b0 is "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* b0 */
            sipush 255
            iand
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " b1 "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 2 /* b1 */
            sipush 255
            iand
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " b2 "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 3 /* b2 */
            sipush 255
            iand
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " b3 "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 4 /* b3 */
            sipush 255
            iand
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
        14: .line 137
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.impl.io.UCSReader.fEncoding:S
            bipush 8
            if_icmpne 16
        15: .line 138
            iload 1 /* b0 */
            bipush 24
            ishl
            iload 2 /* b1 */
            bipush 16
            ishl
            iadd
            iload 3 /* b2 */
            bipush 8
            ishl
            iadd
            iload 4 /* b3 */
            iadd
            ireturn
        16: .line 140
      StackMap locals:
      StackMap stack:
            iload 4 /* b3 */
            bipush 24
            ishl
            iload 3 /* b2 */
            bipush 16
            ishl
            iadd
            iload 2 /* b1 */
            bipush 8
            ishl
            iadd
            iload 1 /* b0 */
            iadd
            ireturn
        end local 4 // int b3
        end local 3 // int b2
        17: .line 142
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.impl.io.UCSReader.fEncoding:S
            iconst_2
            if_icmpne 19
        18: .line 143
            iload 1 /* b0 */
            bipush 8
            ishl
            iload 2 /* b1 */
            iadd
            ireturn
        19: .line 145
      StackMap locals:
      StackMap stack:
            iload 2 /* b1 */
            bipush 8
            ishl
            iload 1 /* b0 */
            iadd
            ireturn
        end local 2 // int b1
        end local 1 // int b0
        end local 0 // com.sun.org.apache.xerces.internal.impl.io.UCSReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   20     0  this  Lcom/sun/org/apache/xerces/internal/impl/io/UCSReader;
            1   20     1    b0  I
            4   20     2    b1  I
            8   17     3    b2  I
           11   17     4    b3  I
    Exceptions:
      throws java.io.IOException

  public int read(char[], int, int);
    descriptor: ([CII)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=13, args_size=4
        start local 0 // com.sun.org.apache.xerces.internal.impl.io.UCSReader this
        start local 1 // char[] ch
        start local 2 // int offset
        start local 3 // int length
         0: .line 164
            iload 3 /* length */
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.impl.io.UCSReader.fEncoding:S
            iconst_4
            if_icmplt 1
            iconst_2
            goto 2
      StackMap locals:
      StackMap stack: int
         1: iconst_1
      StackMap locals: com.sun.org.apache.xerces.internal.impl.io.UCSReader char[] int int
      StackMap stack: int int
         2: ishl
            istore 4 /* byteLength */
        start local 4 // int byteLength
         3: .line 165
            iload 4 /* byteLength */
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.impl.io.UCSReader.fBuffer:[B
            arraylength
            if_icmple 5
         4: .line 166
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.impl.io.UCSReader.fBuffer:[B
            arraylength
            istore 4 /* byteLength */
         5: .line 168
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.impl.io.UCSReader.fInputStream:Ljava/io/InputStream;
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.impl.io.UCSReader.fBuffer:[B
            iconst_0
            iload 4 /* byteLength */
            invokevirtual java.io.InputStream.read:([BII)I
            istore 5 /* count */
        start local 5 // int count
         6: .line 169
            iload 5 /* count */
            iconst_m1
            if_icmpne 7
            iconst_m1
            ireturn
         7: .line 171
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.impl.io.UCSReader.fEncoding:S
            iconst_4
            if_icmplt 24
         8: .line 173
            iconst_4
            iload 5 /* count */
            iconst_3
            iand
            isub
            iconst_3
            iand
            istore 6 /* numToRead */
        start local 6 // int numToRead
         9: .line 174
            iconst_0
            istore 7 /* i */
        start local 7 // int i
        10: goto 21
        11: .line 175
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.impl.io.UCSReader.fInputStream:Ljava/io/InputStream;
            invokevirtual java.io.InputStream.read:()I
            istore 8 /* charRead */
        start local 8 // int charRead
        12: .line 176
            iload 8 /* charRead */
            iconst_m1
            if_icmpne 19
        13: .line 177
            iload 7 /* i */
            istore 9 /* j */
        start local 9 // int j
        14: goto 17
        15: .line 178
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.impl.io.UCSReader.fBuffer:[B
            iload 5 /* count */
            iload 9 /* j */
            iadd
            iconst_0
            bastore
        16: .line 177
            iinc 9 /* j */ 1
      StackMap locals:
      StackMap stack:
        17: iload 9 /* j */
            iload 6 /* numToRead */
            if_icmplt 15
        end local 9 // int j
        18: .line 179
            goto 22
        19: .line 181
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.impl.io.UCSReader.fBuffer:[B
            iload 5 /* count */
            iload 7 /* i */
            iadd
            iload 8 /* charRead */
            i2b
            bastore
        end local 8 // int charRead
        20: .line 174
            iinc 7 /* i */ 1
      StackMap locals:
      StackMap stack:
        21: iload 7 /* i */
            iload 6 /* numToRead */
            if_icmplt 11
        end local 7 // int i
        22: .line 184
      StackMap locals:
      StackMap stack:
            iload 5 /* count */
            iload 6 /* numToRead */
            iadd
            istore 5 /* count */
        end local 6 // int numToRead
        23: .line 185
            goto 32
        24: .line 186
      StackMap locals:
      StackMap stack:
            iload 5 /* count */
            iconst_1
            iand
            istore 6 /* numToRead */
        start local 6 // int numToRead
        25: .line 187
            iload 6 /* numToRead */
            ifeq 32
        26: .line 188
            iinc 5 /* count */ 1
        27: .line 189
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.impl.io.UCSReader.fInputStream:Ljava/io/InputStream;
            invokevirtual java.io.InputStream.read:()I
            istore 7 /* charRead */
        start local 7 // int charRead
        28: .line 190
            iload 7 /* charRead */
            iconst_m1
            if_icmpne 31
        29: .line 191
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.impl.io.UCSReader.fBuffer:[B
            iload 5 /* count */
            iconst_0
            bastore
        30: .line 192
            goto 32
        31: .line 193
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.impl.io.UCSReader.fBuffer:[B
            iload 5 /* count */
            iload 7 /* charRead */
            i2b
            bastore
        end local 7 // int charRead
        end local 6 // int numToRead
        32: .line 199
      StackMap locals:
      StackMap stack:
            iload 5 /* count */
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.impl.io.UCSReader.fEncoding:S
            iconst_4
            if_icmplt 33
            iconst_2
            goto 34
      StackMap locals:
      StackMap stack: int
        33: iconst_1
      StackMap locals: com.sun.org.apache.xerces.internal.impl.io.UCSReader char[] int int int int
      StackMap stack: int int
        34: ishr
            istore 6 /* numChars */
        start local 6 // int numChars
        35: .line 200
            iconst_0
            istore 7 /* curPos */
        start local 7 // int curPos
        36: .line 201
            iconst_0
            istore 8 /* i */
        start local 8 // int i
        37: goto 51
        38: .line 202
      StackMap locals: int int int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.impl.io.UCSReader.fBuffer:[B
            iload 7 /* curPos */
            iinc 7 /* curPos */ 1
            baload
            sipush 255
            iand
            istore 9 /* b0 */
        start local 9 // int b0
        39: .line 203
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.impl.io.UCSReader.fBuffer:[B
            iload 7 /* curPos */
            iinc 7 /* curPos */ 1
            baload
            sipush 255
            iand
            istore 10 /* b1 */
        start local 10 // int b1
        40: .line 204
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.impl.io.UCSReader.fEncoding:S
            iconst_4
            if_icmplt 47
        41: .line 205
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.impl.io.UCSReader.fBuffer:[B
            iload 7 /* curPos */
            iinc 7 /* curPos */ 1
            baload
            sipush 255
            iand
            istore 11 /* b2 */
        start local 11 // int b2
        42: .line 206
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.impl.io.UCSReader.fBuffer:[B
            iload 7 /* curPos */
            iinc 7 /* curPos */ 1
            baload
            sipush 255
            iand
            istore 12 /* b3 */
        start local 12 // int b3
        43: .line 207
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.impl.io.UCSReader.fEncoding:S
            bipush 8
            if_icmpne 45
        44: .line 208
            aload 1 /* ch */
            iload 2 /* offset */
            iload 8 /* i */
            iadd
            iload 9 /* b0 */
            bipush 24
            ishl
            iload 10 /* b1 */
            bipush 16
            ishl
            iadd
            iload 11 /* b2 */
            bipush 8
            ishl
            iadd
            iload 12 /* b3 */
            iadd
            i2c
            castore
            goto 50
        45: .line 210
      StackMap locals: com.sun.org.apache.xerces.internal.impl.io.UCSReader char[] int int int int int int int int int int int
      StackMap stack:
            aload 1 /* ch */
            iload 2 /* offset */
            iload 8 /* i */
            iadd
            iload 12 /* b3 */
            bipush 24
            ishl
            iload 11 /* b2 */
            bipush 16
            ishl
            iadd
            iload 10 /* b1 */
            bipush 8
            ishl
            iadd
            iload 9 /* b0 */
            iadd
            i2c
            castore
        end local 12 // int b3
        end local 11 // int b2
        46: .line 211
            goto 50
        47: .line 212
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.impl.io.UCSReader.fEncoding:S
            iconst_2
            if_icmpne 49
        48: .line 213
            aload 1 /* ch */
            iload 2 /* offset */
            iload 8 /* i */
            iadd
            iload 9 /* b0 */
            bipush 8
            ishl
            iload 10 /* b1 */
            iadd
            i2c
            castore
            goto 50
        49: .line 215
      StackMap locals:
      StackMap stack:
            aload 1 /* ch */
            iload 2 /* offset */
            iload 8 /* i */
            iadd
            iload 10 /* b1 */
            bipush 8
            ishl
            iload 9 /* b0 */
            iadd
            i2c
            castore
        end local 10 // int b1
        end local 9 // int b0
        50: .line 201
      StackMap locals:
      StackMap stack:
            iinc 8 /* i */ 1
      StackMap locals:
      StackMap stack:
        51: iload 8 /* i */
            iload 6 /* numChars */
            if_icmplt 38
        end local 8 // int i
        52: .line 218
            iload 6 /* numChars */
            ireturn
        end local 7 // int curPos
        end local 6 // int numChars
        end local 5 // int count
        end local 4 // int byteLength
        end local 3 // int length
        end local 2 // int offset
        end local 1 // char[] ch
        end local 0 // com.sun.org.apache.xerces.internal.impl.io.UCSReader this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   53     0        this  Lcom/sun/org/apache/xerces/internal/impl/io/UCSReader;
            0   53     1          ch  [C
            0   53     2      offset  I
            0   53     3      length  I
            3   53     4  byteLength  I
            6   53     5       count  I
            9   23     6   numToRead  I
           10   22     7           i  I
           12   20     8    charRead  I
           14   18     9           j  I
           25   32     6   numToRead  I
           28   32     7    charRead  I
           35   53     6    numChars  I
           36   53     7      curPos  I
           37   52     8           i  I
           39   50     9          b0  I
           40   50    10          b1  I
           42   46    11          b2  I
           43   46    12          b3  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      ch      
      offset  
      length  

  public long skip(long);
    descriptor: (J)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=2
        start local 0 // com.sun.org.apache.xerces.internal.impl.io.UCSReader this
        start local 1 // long n
         0: .line 238
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.impl.io.UCSReader.fEncoding:S
            iconst_4
            if_icmplt 1
            iconst_2
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_1
      StackMap locals:
      StackMap stack: int
         2: istore 3 /* charWidth */
        start local 3 // int charWidth
         3: .line 239
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.impl.io.UCSReader.fInputStream:Ljava/io/InputStream;
            lload 1 /* n */
            iload 3 /* charWidth */
            lshl
            invokevirtual java.io.InputStream.skip:(J)J
            lstore 4 /* bytesSkipped */
        start local 4 // long bytesSkipped
         4: .line 240
            lload 4 /* bytesSkipped */
            iload 3 /* charWidth */
            iconst_1
            ior
            i2l
            land
            lconst_0
            lcmp
            ifne 5
            lload 4 /* bytesSkipped */
            iload 3 /* charWidth */
            lshr
            lreturn
         5: .line 241
      StackMap locals: int long
      StackMap stack:
            lload 4 /* bytesSkipped */
            iload 3 /* charWidth */
            lshr
            lconst_1
            ladd
            lreturn
        end local 4 // long bytesSkipped
        end local 3 // int charWidth
        end local 1 // long n
        end local 0 // com.sun.org.apache.xerces.internal.impl.io.UCSReader this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    6     0          this  Lcom/sun/org/apache/xerces/internal/impl/io/UCSReader;
            0    6     1             n  J
            3    6     3     charWidth  I
            4    6     4  bytesSkipped  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 // com.sun.org.apache.xerces.internal.impl.io.UCSReader this
         0: .line 254
            iconst_0
            ireturn
        end local 0 // com.sun.org.apache.xerces.internal.impl.io.UCSReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/org/apache/xerces/internal/impl/io/UCSReader;
    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 // com.sun.org.apache.xerces.internal.impl.io.UCSReader this
         0: .line 261
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.impl.io.UCSReader.fInputStream:Ljava/io/InputStream;
            invokevirtual java.io.InputStream.markSupported:()Z
            ireturn
        end local 0 // com.sun.org.apache.xerces.internal.impl.io.UCSReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/org/apache/xerces/internal/impl/io/UCSReader;

  public void mark(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xerces.internal.impl.io.UCSReader this
        start local 1 // int readAheadLimit
         0: .line 278
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.impl.io.UCSReader.fInputStream:Ljava/io/InputStream;
            iload 1 /* readAheadLimit */
            invokevirtual java.io.InputStream.mark:(I)V
         1: .line 279
            return
        end local 1 // int readAheadLimit
        end local 0 // com.sun.org.apache.xerces.internal.impl.io.UCSReader this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    2     0            this  Lcom/sun/org/apache/xerces/internal/impl/io/UCSReader;
            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 // com.sun.org.apache.xerces.internal.impl.io.UCSReader this
         0: .line 295
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.impl.io.UCSReader.fInputStream:Ljava/io/InputStream;
            invokevirtual java.io.InputStream.reset:()V
         1: .line 296
            return
        end local 0 // com.sun.org.apache.xerces.internal.impl.io.UCSReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/org/apache/xerces/internal/impl/io/UCSReader;
    Exceptions:
      throws java.io.IOException

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // com.sun.org.apache.xerces.internal.impl.io.UCSReader this
         0: .line 306
            invokestatic com.sun.xml.internal.stream.util.ThreadLocalBufferAllocator.getBufferAllocator:()Lcom/sun/xml/internal/stream/util/BufferAllocator;
            astore 1 /* ba */
        start local 1 // com.sun.xml.internal.stream.util.BufferAllocator ba
         1: .line 307
            aload 1 /* ba */
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.impl.io.UCSReader.fBuffer:[B
            invokevirtual com.sun.xml.internal.stream.util.BufferAllocator.returnByteBuffer:([B)V
         2: .line 308
            aload 0 /* this */
            aconst_null
            putfield com.sun.org.apache.xerces.internal.impl.io.UCSReader.fBuffer:[B
         3: .line 309
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.impl.io.UCSReader.fInputStream:Ljava/io/InputStream;
            invokevirtual java.io.InputStream.close:()V
         4: .line 310
            return
        end local 1 // com.sun.xml.internal.stream.util.BufferAllocator ba
        end local 0 // com.sun.org.apache.xerces.internal.impl.io.UCSReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/sun/org/apache/xerces/internal/impl/io/UCSReader;
            1    5     1    ba  Lcom/sun/xml/internal/stream/util/BufferAllocator;
    Exceptions:
      throws java.io.IOException
}
SourceFile: "UCSReader.java"