public final class com.sun.xml.internal.stream.writers.UTF8OutputStreamWriter extends java.io.Writer
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: com.sun.xml.internal.stream.writers.UTF8OutputStreamWriter
  super_class: java.io.Writer
{
  java.io.OutputStream out;
    descriptor: Ljava/io/OutputStream;
    flags: (0x0000) 

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

  public void <init>(java.io.OutputStream);
    descriptor: (Ljava/io/OutputStream;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.xml.internal.stream.writers.UTF8OutputStreamWriter this
        start local 1 // java.io.OutputStream out
         0: .line 62
            aload 0 /* this */
            invokespecial java.io.Writer.<init>:()V
         1: .line 60
            aload 0 /* this */
            iconst_0
            putfield com.sun.xml.internal.stream.writers.UTF8OutputStreamWriter.lastUTF16CodePoint:I
         2: .line 63
            aload 0 /* this */
            aload 1 /* out */
            putfield com.sun.xml.internal.stream.writers.UTF8OutputStreamWriter.out:Ljava/io/OutputStream;
         3: .line 64
            return
        end local 1 // java.io.OutputStream out
        end local 0 // com.sun.xml.internal.stream.writers.UTF8OutputStreamWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/sun/xml/internal/stream/writers/UTF8OutputStreamWriter;
            0    4     1   out  Ljava/io/OutputStream;
    MethodParameters:
      Name  Flags
      out   

  public java.lang.String getEncoding();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.xml.internal.stream.writers.UTF8OutputStreamWriter this
         0: .line 67
            ldc "UTF-8"
            areturn
        end local 0 // com.sun.xml.internal.stream.writers.UTF8OutputStreamWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/xml/internal/stream/writers/UTF8OutputStreamWriter;

  public void write(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // com.sun.xml.internal.stream.writers.UTF8OutputStreamWriter this
        start local 1 // int c
         0: .line 72
            aload 0 /* this */
            getfield com.sun.xml.internal.stream.writers.UTF8OutputStreamWriter.lastUTF16CodePoint:I
            ifeq 11
         1: .line 74
            aload 0 /* this */
            getfield com.sun.xml.internal.stream.writers.UTF8OutputStreamWriter.lastUTF16CodePoint:I
            sipush 1023
            iand
            bipush 10
            ishl
            iload 1 /* c */
            sipush 1023
            iand
            ior
            ldc 65536
            iadd
         2: .line 73
            istore 2 /* uc */
        start local 2 // int uc
         3: .line 76
            iload 2 /* uc */
            iflt 4
            iload 2 /* uc */
            ldc 2097152
            if_icmplt 5
         4: .line 77
      StackMap locals: int
      StackMap stack:
            new java.io.IOException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Atttempting to write invalid Unicode code point '"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 2 /* uc */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc "'"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 80
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.xml.internal.stream.writers.UTF8OutputStreamWriter.out:Ljava/io/OutputStream;
            sipush 240
            iload 2 /* uc */
            bipush 18
            ishr
            ior
            invokevirtual java.io.OutputStream.write:(I)V
         6: .line 81
            aload 0 /* this */
            getfield com.sun.xml.internal.stream.writers.UTF8OutputStreamWriter.out:Ljava/io/OutputStream;
            sipush 128
            iload 2 /* uc */
            bipush 12
            ishr
            bipush 63
            iand
            ior
            invokevirtual java.io.OutputStream.write:(I)V
         7: .line 82
            aload 0 /* this */
            getfield com.sun.xml.internal.stream.writers.UTF8OutputStreamWriter.out:Ljava/io/OutputStream;
            sipush 128
            iload 2 /* uc */
            bipush 6
            ishr
            bipush 63
            iand
            ior
            invokevirtual java.io.OutputStream.write:(I)V
         8: .line 83
            aload 0 /* this */
            getfield com.sun.xml.internal.stream.writers.UTF8OutputStreamWriter.out:Ljava/io/OutputStream;
            sipush 128
            iload 2 /* uc */
            bipush 63
            iand
            ior
            invokevirtual java.io.OutputStream.write:(I)V
         9: .line 85
            aload 0 /* this */
            iconst_0
            putfield com.sun.xml.internal.stream.writers.UTF8OutputStreamWriter.lastUTF16CodePoint:I
        10: .line 86
            return
        end local 2 // int uc
        11: .line 90
      StackMap locals:
      StackMap stack:
            iload 1 /* c */
            sipush 128
            if_icmpge 14
        12: .line 92
            aload 0 /* this */
            getfield com.sun.xml.internal.stream.writers.UTF8OutputStreamWriter.out:Ljava/io/OutputStream;
            iload 1 /* c */
            invokevirtual java.io.OutputStream.write:(I)V
        13: .line 93
            goto 25
        14: .line 94
      StackMap locals:
      StackMap stack:
            iload 1 /* c */
            sipush 2048
            if_icmpge 18
        15: .line 96
            aload 0 /* this */
            getfield com.sun.xml.internal.stream.writers.UTF8OutputStreamWriter.out:Ljava/io/OutputStream;
            sipush 192
            iload 1 /* c */
            bipush 6
            ishr
            ior
            invokevirtual java.io.OutputStream.write:(I)V
        16: .line 97
            aload 0 /* this */
            getfield com.sun.xml.internal.stream.writers.UTF8OutputStreamWriter.out:Ljava/io/OutputStream;
            sipush 128
            iload 1 /* c */
            bipush 63
            iand
            ior
            invokevirtual java.io.OutputStream.write:(I)V
        17: .line 98
            goto 25
        18: .line 99
      StackMap locals:
      StackMap stack:
            iload 1 /* c */
            ldc 65535
            if_icmpgt 25
        19: .line 100
            iload 1 /* c */
            invokestatic com.sun.org.apache.xerces.internal.util.XMLChar.isHighSurrogate:(I)Z
            ifne 24
            iload 1 /* c */
            invokestatic com.sun.org.apache.xerces.internal.util.XMLChar.isLowSurrogate:(I)Z
            ifne 24
        20: .line 102
            aload 0 /* this */
            getfield com.sun.xml.internal.stream.writers.UTF8OutputStreamWriter.out:Ljava/io/OutputStream;
            sipush 224
            iload 1 /* c */
            bipush 12
            ishr
            ior
            invokevirtual java.io.OutputStream.write:(I)V
        21: .line 103
            aload 0 /* this */
            getfield com.sun.xml.internal.stream.writers.UTF8OutputStreamWriter.out:Ljava/io/OutputStream;
            sipush 128
            iload 1 /* c */
            bipush 6
            ishr
            bipush 63
            iand
            ior
            invokevirtual java.io.OutputStream.write:(I)V
        22: .line 104
            aload 0 /* this */
            getfield com.sun.xml.internal.stream.writers.UTF8OutputStreamWriter.out:Ljava/io/OutputStream;
            sipush 128
            iload 1 /* c */
            bipush 63
            iand
            ior
            invokevirtual java.io.OutputStream.write:(I)V
        23: .line 105
            goto 25
        24: .line 107
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* c */
            putfield com.sun.xml.internal.stream.writers.UTF8OutputStreamWriter.lastUTF16CodePoint:I
        25: .line 110
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int c
        end local 0 // com.sun.xml.internal.stream.writers.UTF8OutputStreamWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   26     0  this  Lcom/sun/xml/internal/stream/writers/UTF8OutputStreamWriter;
            0   26     1     c  I
            3   11     2    uc  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      c     

  public void write(char[]);
    descriptor: ([C)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.sun.xml.internal.stream.writers.UTF8OutputStreamWriter this
        start local 1 // char[] cbuf
         0: .line 113
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         1: goto 4
         2: .line 114
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* cbuf */
            iload 2 /* i */
            caload
            invokevirtual com.sun.xml.internal.stream.writers.UTF8OutputStreamWriter.write:(I)V
         3: .line 113
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         4: iload 2 /* i */
            aload 1 /* cbuf */
            arraylength
            if_icmplt 2
        end local 2 // int i
         5: .line 116
            return
        end local 1 // char[] cbuf
        end local 0 // com.sun.xml.internal.stream.writers.UTF8OutputStreamWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lcom/sun/xml/internal/stream/writers/UTF8OutputStreamWriter;
            0    6     1  cbuf  [C
            1    5     2     i  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      cbuf  

  public void write(char[], int, int);
    descriptor: ([CII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // com.sun.xml.internal.stream.writers.UTF8OutputStreamWriter this
        start local 1 // char[] cbuf
        start local 2 // int off
        start local 3 // int len
         0: .line 119
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         1: goto 4
         2: .line 120
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* cbuf */
            iload 2 /* off */
            iload 4 /* i */
            iadd
            caload
            invokevirtual com.sun.xml.internal.stream.writers.UTF8OutputStreamWriter.write:(I)V
         3: .line 119
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
         4: iload 4 /* i */
            iload 3 /* len */
            if_icmplt 2
        end local 4 // int i
         5: .line 122
            return
        end local 3 // int len
        end local 2 // int off
        end local 1 // char[] cbuf
        end local 0 // com.sun.xml.internal.stream.writers.UTF8OutputStreamWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lcom/sun/xml/internal/stream/writers/UTF8OutputStreamWriter;
            0    6     1  cbuf  [C
            0    6     2   off  I
            0    6     3   len  I
            1    5     4     i  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      cbuf  
      off   
      len   

  public void write(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // com.sun.xml.internal.stream.writers.UTF8OutputStreamWriter this
        start local 1 // java.lang.String str
         0: .line 125
            aload 1 /* str */
            invokevirtual java.lang.String.length:()I
            istore 2 /* len */
        start local 2 // int len
         1: .line 126
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         2: goto 5
         3: .line 127
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* str */
            iload 3 /* i */
            invokevirtual java.lang.String.charAt:(I)C
            invokevirtual com.sun.xml.internal.stream.writers.UTF8OutputStreamWriter.write:(I)V
         4: .line 126
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 3 /* i */
            iload 2 /* len */
            if_icmplt 3
        end local 3 // int i
         6: .line 129
            return
        end local 2 // int len
        end local 1 // java.lang.String str
        end local 0 // com.sun.xml.internal.stream.writers.UTF8OutputStreamWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lcom/sun/xml/internal/stream/writers/UTF8OutputStreamWriter;
            0    7     1   str  Ljava/lang/String;
            1    7     2   len  I
            2    6     3     i  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      str   

  public void write(java.lang.String, int, int);
    descriptor: (Ljava/lang/String;II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // com.sun.xml.internal.stream.writers.UTF8OutputStreamWriter this
        start local 1 // java.lang.String str
        start local 2 // int off
        start local 3 // int len
         0: .line 132
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         1: goto 4
         2: .line 133
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* str */
            iload 2 /* off */
            iload 4 /* i */
            iadd
            invokevirtual java.lang.String.charAt:(I)C
            invokevirtual com.sun.xml.internal.stream.writers.UTF8OutputStreamWriter.write:(I)V
         3: .line 132
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
         4: iload 4 /* i */
            iload 3 /* len */
            if_icmplt 2
        end local 4 // int i
         5: .line 135
            return
        end local 3 // int len
        end local 2 // int off
        end local 1 // java.lang.String str
        end local 0 // com.sun.xml.internal.stream.writers.UTF8OutputStreamWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lcom/sun/xml/internal/stream/writers/UTF8OutputStreamWriter;
            0    6     1   str  Ljava/lang/String;
            0    6     2   off  I
            0    6     3   len  I
            1    5     4     i  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      str   
      off   
      len   

  public void flush();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.xml.internal.stream.writers.UTF8OutputStreamWriter this
         0: .line 138
            aload 0 /* this */
            getfield com.sun.xml.internal.stream.writers.UTF8OutputStreamWriter.out:Ljava/io/OutputStream;
            invokevirtual java.io.OutputStream.flush:()V
         1: .line 139
            return
        end local 0 // com.sun.xml.internal.stream.writers.UTF8OutputStreamWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/xml/internal/stream/writers/UTF8OutputStreamWriter;
    Exceptions:
      throws java.io.IOException

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.sun.xml.internal.stream.writers.UTF8OutputStreamWriter this
         0: .line 142
            aload 0 /* this */
            getfield com.sun.xml.internal.stream.writers.UTF8OutputStreamWriter.lastUTF16CodePoint:I
            ifeq 2
         1: .line 143
            new java.lang.IllegalStateException
            dup
            ldc "Attempting to close a UTF8OutputStreamWriter while awaiting for a UTF-16 code unit"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 146
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.xml.internal.stream.writers.UTF8OutputStreamWriter.out:Ljava/io/OutputStream;
            invokevirtual java.io.OutputStream.close:()V
         3: .line 147
            return
        end local 0 // com.sun.xml.internal.stream.writers.UTF8OutputStreamWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/sun/xml/internal/stream/writers/UTF8OutputStreamWriter;
    Exceptions:
      throws java.io.IOException
}
SourceFile: "UTF8OutputStreamWriter.java"