public class com.sun.xml.internal.bind.marshaller.NioEscapeHandler implements com.sun.xml.internal.bind.marshaller.CharacterEscapeHandler
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.sun.xml.internal.bind.marshaller.NioEscapeHandler
  super_class: java.lang.Object
{
  private final java.nio.charset.CharsetEncoder encoder;
    descriptor: Ljava/nio/charset/CharsetEncoder;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.xml.internal.bind.marshaller.NioEscapeHandler this
        start local 1 // java.lang.String charsetName
         0: .line 58
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 60
            aload 0 /* this */
            aload 1 /* charsetName */
            invokestatic java.nio.charset.Charset.forName:(Ljava/lang/String;)Ljava/nio/charset/Charset;
            invokevirtual java.nio.charset.Charset.newEncoder:()Ljava/nio/charset/CharsetEncoder;
            putfield com.sun.xml.internal.bind.marshaller.NioEscapeHandler.encoder:Ljava/nio/charset/CharsetEncoder;
         2: .line 61
            return
        end local 1 // java.lang.String charsetName
        end local 0 // com.sun.xml.internal.bind.marshaller.NioEscapeHandler this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    3     0         this  Lcom/sun/xml/internal/bind/marshaller/NioEscapeHandler;
            0    3     1  charsetName  Ljava/lang/String;
    MethodParameters:
             Name  Flags
      charsetName  

  public void escape(char[], int, int, boolean, java.io.Writer);
    descriptor: ([CIIZLjava/io/Writer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=8, args_size=6
        start local 0 // com.sun.xml.internal.bind.marshaller.NioEscapeHandler this
        start local 1 // char[] ch
        start local 2 // int start
        start local 3 // int length
        start local 4 // boolean isAttVal
        start local 5 // java.io.Writer out
         0: .line 64
            iload 2 /* start */
            iload 3 /* length */
            iadd
            istore 6 /* limit */
        start local 6 // int limit
         1: .line 65
            iload 2 /* start */
            istore 7 /* i */
        start local 7 // int i
         2: goto 22
         3: .line 66
      StackMap locals: int int
      StackMap stack:
            aload 1 /* ch */
            iload 7 /* i */
            caload
            lookupswitch { // 4
                   34: 10
                   38: 4
                   60: 6
                   62: 8
              default: 15
          }
         4: .line 68
      StackMap locals:
      StackMap stack:
            aload 5 /* out */
            ldc "&amp;"
            invokevirtual java.io.Writer.write:(Ljava/lang/String;)V
         5: .line 69
            goto 21
         6: .line 71
      StackMap locals:
      StackMap stack:
            aload 5 /* out */
            ldc "&lt;"
            invokevirtual java.io.Writer.write:(Ljava/lang/String;)V
         7: .line 72
            goto 21
         8: .line 74
      StackMap locals:
      StackMap stack:
            aload 5 /* out */
            ldc "&gt;"
            invokevirtual java.io.Writer.write:(Ljava/lang/String;)V
         9: .line 75
            goto 21
        10: .line 77
      StackMap locals:
      StackMap stack:
            iload 4 /* isAttVal */
            ifeq 13
        11: .line 78
            aload 5 /* out */
            ldc "&quot;"
            invokevirtual java.io.Writer.write:(Ljava/lang/String;)V
        12: .line 79
            goto 21
        13: .line 80
      StackMap locals:
      StackMap stack:
            aload 5 /* out */
            bipush 34
            invokevirtual java.io.Writer.write:(I)V
        14: .line 82
            goto 21
        15: .line 84
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.xml.internal.bind.marshaller.NioEscapeHandler.encoder:Ljava/nio/charset/CharsetEncoder;
            aload 1 /* ch */
            iload 7 /* i */
            caload
            invokevirtual java.nio.charset.CharsetEncoder.canEncode:(C)Z
            ifeq 18
        16: .line 85
            aload 5 /* out */
            aload 1 /* ch */
            iload 7 /* i */
            caload
            invokevirtual java.io.Writer.write:(I)V
        17: .line 86
            goto 21
        18: .line 87
      StackMap locals:
      StackMap stack:
            aload 5 /* out */
            ldc "&#"
            invokevirtual java.io.Writer.write:(Ljava/lang/String;)V
        19: .line 88
            aload 5 /* out */
            aload 1 /* ch */
            iload 7 /* i */
            caload
            invokestatic java.lang.Integer.toString:(I)Ljava/lang/String;
            invokevirtual java.io.Writer.write:(Ljava/lang/String;)V
        20: .line 89
            aload 5 /* out */
            bipush 59
            invokevirtual java.io.Writer.write:(I)V
        21: .line 65
      StackMap locals:
      StackMap stack:
            iinc 7 /* i */ 1
      StackMap locals:
      StackMap stack:
        22: iload 7 /* i */
            iload 6 /* limit */
            if_icmplt 3
        end local 7 // int i
        23: .line 93
            return
        end local 6 // int limit
        end local 5 // java.io.Writer out
        end local 4 // boolean isAttVal
        end local 3 // int length
        end local 2 // int start
        end local 1 // char[] ch
        end local 0 // com.sun.xml.internal.bind.marshaller.NioEscapeHandler this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   24     0      this  Lcom/sun/xml/internal/bind/marshaller/NioEscapeHandler;
            0   24     1        ch  [C
            0   24     2     start  I
            0   24     3    length  I
            0   24     4  isAttVal  Z
            0   24     5       out  Ljava/io/Writer;
            1   24     6     limit  I
            2   23     7         i  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      ch        
      start     
      length    
      isAttVal  
      out       
}
SourceFile: "NioEscapeHandler.java"