public class com.sun.org.apache.xml.internal.security.encryption.DocumentSerializer extends com.sun.org.apache.xml.internal.security.encryption.AbstractSerializer
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.sun.org.apache.xml.internal.security.encryption.DocumentSerializer
  super_class: com.sun.org.apache.xml.internal.security.encryption.AbstractSerializer
{
  protected javax.xml.parsers.DocumentBuilderFactory dbf;
    descriptor: Ljavax/xml/parsers/DocumentBuilderFactory;
    flags: (0x0004) ACC_PROTECTED

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xml.internal.security.encryption.DocumentSerializer this
         0: .line 44
            aload 0 /* this */
            invokespecial com.sun.org.apache.xml.internal.security.encryption.AbstractSerializer.<init>:()V
            return
        end local 0 // com.sun.org.apache.xml.internal.security.encryption.DocumentSerializer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/org/apache/xml/internal/security/encryption/DocumentSerializer;

  public org.w3c.dom.Node deserialize(byte[], org.w3c.dom.Node);
    descriptor: ([BLorg/w3c/dom/Node;)Lorg/w3c/dom/Node;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=4, args_size=3
        start local 0 // com.sun.org.apache.xml.internal.security.encryption.DocumentSerializer this
        start local 1 // byte[] source
        start local 2 // org.w3c.dom.Node ctx
         0: .line 55
            aload 1 /* source */
            aload 2 /* ctx */
            invokestatic com.sun.org.apache.xml.internal.security.encryption.DocumentSerializer.createContext:([BLorg/w3c/dom/Node;)[B
            astore 3 /* fragment */
        start local 3 // byte[] fragment
         1: .line 56
            aload 0 /* this */
            aload 2 /* ctx */
            new org.xml.sax.InputSource
            dup
            new java.io.ByteArrayInputStream
            dup
            aload 3 /* fragment */
            invokespecial java.io.ByteArrayInputStream.<init>:([B)V
            invokespecial org.xml.sax.InputSource.<init>:(Ljava/io/InputStream;)V
            invokevirtual com.sun.org.apache.xml.internal.security.encryption.DocumentSerializer.deserialize:(Lorg/w3c/dom/Node;Lorg/xml/sax/InputSource;)Lorg/w3c/dom/Node;
            areturn
        end local 3 // byte[] fragment
        end local 2 // org.w3c.dom.Node ctx
        end local 1 // byte[] source
        end local 0 // com.sun.org.apache.xml.internal.security.encryption.DocumentSerializer this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lcom/sun/org/apache/xml/internal/security/encryption/DocumentSerializer;
            0    2     1    source  [B
            0    2     2       ctx  Lorg/w3c/dom/Node;
            1    2     3  fragment  [B
    Exceptions:
      throws com.sun.org.apache.xml.internal.security.encryption.XMLEncryptionException
    MethodParameters:
        Name  Flags
      source  
      ctx     

  public org.w3c.dom.Node deserialize(java.lang.String, org.w3c.dom.Node);
    descriptor: (Ljava/lang/String;Lorg/w3c/dom/Node;)Lorg/w3c/dom/Node;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=4, args_size=3
        start local 0 // com.sun.org.apache.xml.internal.security.encryption.DocumentSerializer this
        start local 1 // java.lang.String source
        start local 2 // org.w3c.dom.Node ctx
         0: .line 66
            aload 1 /* source */
            aload 2 /* ctx */
            invokestatic com.sun.org.apache.xml.internal.security.encryption.DocumentSerializer.createContext:(Ljava/lang/String;Lorg/w3c/dom/Node;)Ljava/lang/String;
            astore 3 /* fragment */
        start local 3 // java.lang.String fragment
         1: .line 67
            aload 0 /* this */
            aload 2 /* ctx */
            new org.xml.sax.InputSource
            dup
            new java.io.StringReader
            dup
            aload 3 /* fragment */
            invokespecial java.io.StringReader.<init>:(Ljava/lang/String;)V
            invokespecial org.xml.sax.InputSource.<init>:(Ljava/io/Reader;)V
            invokevirtual com.sun.org.apache.xml.internal.security.encryption.DocumentSerializer.deserialize:(Lorg/w3c/dom/Node;Lorg/xml/sax/InputSource;)Lorg/w3c/dom/Node;
            areturn
        end local 3 // java.lang.String fragment
        end local 2 // org.w3c.dom.Node ctx
        end local 1 // java.lang.String source
        end local 0 // com.sun.org.apache.xml.internal.security.encryption.DocumentSerializer this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lcom/sun/org/apache/xml/internal/security/encryption/DocumentSerializer;
            0    2     1    source  Ljava/lang/String;
            0    2     2       ctx  Lorg/w3c/dom/Node;
            1    2     3  fragment  Ljava/lang/String;
    Exceptions:
      throws com.sun.org.apache.xml.internal.security.encryption.XMLEncryptionException
    MethodParameters:
        Name  Flags
      source  
      ctx     

  private org.w3c.dom.Node deserialize(org.w3c.dom.Node, org.xml.sax.InputSource);
    descriptor: (Lorg/w3c/dom/Node;Lorg/xml/sax/InputSource;)Lorg/w3c/dom/Node;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=9, args_size=3
        start local 0 // com.sun.org.apache.xml.internal.security.encryption.DocumentSerializer this
        start local 1 // org.w3c.dom.Node ctx
        start local 2 // org.xml.sax.InputSource inputSource
         0: .line 78
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.encryption.DocumentSerializer.dbf:Ljavax/xml/parsers/DocumentBuilderFactory;
            ifnonnull 6
         1: .line 79
            aload 0 /* this */
            invokestatic javax.xml.parsers.DocumentBuilderFactory.newInstance:()Ljavax/xml/parsers/DocumentBuilderFactory;
            putfield com.sun.org.apache.xml.internal.security.encryption.DocumentSerializer.dbf:Ljavax/xml/parsers/DocumentBuilderFactory;
         2: .line 80
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.encryption.DocumentSerializer.dbf:Ljavax/xml/parsers/DocumentBuilderFactory;
            iconst_1
            invokevirtual javax.xml.parsers.DocumentBuilderFactory.setNamespaceAware:(Z)V
         3: .line 81
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.encryption.DocumentSerializer.dbf:Ljavax/xml/parsers/DocumentBuilderFactory;
            ldc "http://javax.xml.XMLConstants/feature/secure-processing"
            getstatic java.lang.Boolean.TRUE:Ljava/lang/Boolean;
            invokevirtual java.lang.Boolean.booleanValue:()Z
            invokevirtual javax.xml.parsers.DocumentBuilderFactory.setFeature:(Ljava/lang/String;Z)V
         4: .line 82
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.encryption.DocumentSerializer.dbf:Ljavax/xml/parsers/DocumentBuilderFactory;
            ldc "http://xml.org/sax/features/namespaces"
            getstatic java.lang.Boolean.TRUE:Ljava/lang/Boolean;
            invokevirtual javax.xml.parsers.DocumentBuilderFactory.setAttribute:(Ljava/lang/String;Ljava/lang/Object;)V
         5: .line 83
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.encryption.DocumentSerializer.dbf:Ljavax/xml/parsers/DocumentBuilderFactory;
            iconst_0
            invokevirtual javax.xml.parsers.DocumentBuilderFactory.setValidating:(Z)V
         6: .line 85
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.encryption.DocumentSerializer.dbf:Ljavax/xml/parsers/DocumentBuilderFactory;
            invokevirtual javax.xml.parsers.DocumentBuilderFactory.newDocumentBuilder:()Ljavax/xml/parsers/DocumentBuilder;
            astore 3 /* db */
        start local 3 // javax.xml.parsers.DocumentBuilder db
         7: .line 86
            aload 3 /* db */
            aload 2 /* inputSource */
            invokevirtual javax.xml.parsers.DocumentBuilder.parse:(Lorg/xml/sax/InputSource;)Lorg/w3c/dom/Document;
            astore 4 /* d */
        start local 4 // org.w3c.dom.Document d
         8: .line 88
            aconst_null
            astore 5 /* contextDocument */
        start local 5 // org.w3c.dom.Document contextDocument
         9: .line 89
            bipush 9
            aload 1 /* ctx */
            invokeinterface org.w3c.dom.Node.getNodeType:()S
            if_icmpne 12
        10: .line 90
            aload 1 /* ctx */
            checkcast org.w3c.dom.Document
            astore 5 /* contextDocument */
        11: .line 91
            goto 13
        12: .line 92
      StackMap locals: javax.xml.parsers.DocumentBuilder org.w3c.dom.Document org.w3c.dom.Document
      StackMap stack:
            aload 1 /* ctx */
            invokeinterface org.w3c.dom.Node.getOwnerDocument:()Lorg/w3c/dom/Document;
            astore 5 /* contextDocument */
        13: .line 96
      StackMap locals:
      StackMap stack:
            aload 5 /* contextDocument */
            aload 4 /* d */
            invokeinterface org.w3c.dom.Document.getDocumentElement:()Lorg/w3c/dom/Element;
            iconst_1
            invokeinterface org.w3c.dom.Document.importNode:(Lorg/w3c/dom/Node;Z)Lorg/w3c/dom/Node;
            checkcast org.w3c.dom.Element
        14: .line 95
            astore 6 /* fragElt */
        start local 6 // org.w3c.dom.Element fragElt
        15: .line 97
            aload 5 /* contextDocument */
            invokeinterface org.w3c.dom.Document.createDocumentFragment:()Lorg/w3c/dom/DocumentFragment;
            astore 7 /* result */
        start local 7 // org.w3c.dom.DocumentFragment result
        16: .line 98
            aload 6 /* fragElt */
            invokeinterface org.w3c.dom.Element.getFirstChild:()Lorg/w3c/dom/Node;
            astore 8 /* child */
        start local 8 // org.w3c.dom.Node child
        17: .line 99
            goto 21
        18: .line 100
      StackMap locals: org.w3c.dom.Element org.w3c.dom.DocumentFragment org.w3c.dom.Node
      StackMap stack:
            aload 6 /* fragElt */
            aload 8 /* child */
            invokeinterface org.w3c.dom.Element.removeChild:(Lorg/w3c/dom/Node;)Lorg/w3c/dom/Node;
            pop
        19: .line 101
            aload 7 /* result */
            aload 8 /* child */
            invokeinterface org.w3c.dom.DocumentFragment.appendChild:(Lorg/w3c/dom/Node;)Lorg/w3c/dom/Node;
            pop
        20: .line 102
            aload 6 /* fragElt */
            invokeinterface org.w3c.dom.Element.getFirstChild:()Lorg/w3c/dom/Node;
            astore 8 /* child */
        21: .line 99
      StackMap locals:
      StackMap stack:
            aload 8 /* child */
            ifnonnull 18
        22: .line 104
            aload 7 /* result */
        23: areturn
        end local 8 // org.w3c.dom.Node child
        end local 7 // org.w3c.dom.DocumentFragment result
        end local 6 // org.w3c.dom.Element fragElt
        end local 5 // org.w3c.dom.Document contextDocument
        end local 4 // org.w3c.dom.Document d
        end local 3 // javax.xml.parsers.DocumentBuilder db
        24: .line 105
      StackMap locals: com.sun.org.apache.xml.internal.security.encryption.DocumentSerializer org.w3c.dom.Node org.xml.sax.InputSource
      StackMap stack: org.xml.sax.SAXException
            astore 3 /* se */
        start local 3 // org.xml.sax.SAXException se
        25: .line 106
            new com.sun.org.apache.xml.internal.security.encryption.XMLEncryptionException
            dup
            ldc "empty"
            aload 3 /* se */
            invokespecial com.sun.org.apache.xml.internal.security.encryption.XMLEncryptionException.<init>:(Ljava/lang/String;Ljava/lang/Exception;)V
            athrow
        end local 3 // org.xml.sax.SAXException se
        26: .line 107
      StackMap locals:
      StackMap stack: javax.xml.parsers.ParserConfigurationException
            astore 3 /* pce */
        start local 3 // javax.xml.parsers.ParserConfigurationException pce
        27: .line 108
            new com.sun.org.apache.xml.internal.security.encryption.XMLEncryptionException
            dup
            ldc "empty"
            aload 3 /* pce */
            invokespecial com.sun.org.apache.xml.internal.security.encryption.XMLEncryptionException.<init>:(Ljava/lang/String;Ljava/lang/Exception;)V
            athrow
        end local 3 // javax.xml.parsers.ParserConfigurationException pce
        28: .line 109
      StackMap locals:
      StackMap stack: java.io.IOException
            astore 3 /* ioe */
        start local 3 // java.io.IOException ioe
        29: .line 110
            new com.sun.org.apache.xml.internal.security.encryption.XMLEncryptionException
            dup
            ldc "empty"
            aload 3 /* ioe */
            invokespecial com.sun.org.apache.xml.internal.security.encryption.XMLEncryptionException.<init>:(Ljava/lang/String;Ljava/lang/Exception;)V
            athrow
        end local 3 // java.io.IOException ioe
        end local 2 // org.xml.sax.InputSource inputSource
        end local 1 // org.w3c.dom.Node ctx
        end local 0 // com.sun.org.apache.xml.internal.security.encryption.DocumentSerializer this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   30     0             this  Lcom/sun/org/apache/xml/internal/security/encryption/DocumentSerializer;
            0   30     1              ctx  Lorg/w3c/dom/Node;
            0   30     2      inputSource  Lorg/xml/sax/InputSource;
            7   24     3               db  Ljavax/xml/parsers/DocumentBuilder;
            8   24     4                d  Lorg/w3c/dom/Document;
            9   24     5  contextDocument  Lorg/w3c/dom/Document;
           15   24     6          fragElt  Lorg/w3c/dom/Element;
           16   24     7           result  Lorg/w3c/dom/DocumentFragment;
           17   24     8            child  Lorg/w3c/dom/Node;
           25   26     3               se  Lorg/xml/sax/SAXException;
           27   28     3              pce  Ljavax/xml/parsers/ParserConfigurationException;
           29   30     3              ioe  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0    23      24  Class org.xml.sax.SAXException
           0    23      26  Class javax.xml.parsers.ParserConfigurationException
           0    23      28  Class java.io.IOException
    Exceptions:
      throws com.sun.org.apache.xml.internal.security.encryption.XMLEncryptionException
    MethodParameters:
             Name  Flags
      ctx          
      inputSource  
}
SourceFile: "DocumentSerializer.java"