public class org.apache.commons.configuration.XMLConfiguration extends org.apache.commons.configuration.AbstractHierarchicalFileConfiguration implements org.xml.sax.EntityResolver, org.apache.commons.configuration.resolver.EntityRegistry
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.commons.configuration.XMLConfiguration
  super_class: org.apache.commons.configuration.AbstractHierarchicalFileConfiguration
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 2453781111653383552

  private static final java.lang.String DEFAULT_ROOT_NAME;
    descriptor: Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: "configuration"

  private static final java.lang.String ATTR_SPACE;
    descriptor: Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: "xml:space"

  private static final java.lang.String VALUE_PRESERVE;
    descriptor: Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: "preserve"

  private static final char ATTR_VALUE_DELIMITER;
    descriptor: C
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 124

  private static final java.lang.String JAXP_SCHEMA_LANGUAGE;
    descriptor: Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: "http://java.sun.com/xml/jaxp/properties/schemaLanguage"

  private static final java.lang.String W3C_XML_SCHEMA;
    descriptor: Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: "http://www.w3.org/2001/XMLSchema"

  private org.w3c.dom.Document document;
    descriptor: Lorg/w3c/dom/Document;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.String rootElementName;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.String publicID;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.String systemID;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  private javax.xml.parsers.DocumentBuilder documentBuilder;
    descriptor: Ljavax/xml/parsers/DocumentBuilder;
    flags: (0x0002) ACC_PRIVATE

  private boolean validating;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private boolean schemaValidation;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private boolean attributeSplittingDisabled;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private org.xml.sax.EntityResolver entityResolver;
    descriptor: Lorg/xml/sax/EntityResolver;
    flags: (0x0002) ACC_PRIVATE

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.commons.configuration.XMLConfiguration this
         0: .line 230
            aload 0 /* this */
            invokespecial org.apache.commons.configuration.AbstractHierarchicalFileConfiguration.<init>:()V
         1: .line 223
            aload 0 /* this */
            new org.apache.commons.configuration.resolver.DefaultEntityResolver
            dup
            invokespecial org.apache.commons.configuration.resolver.DefaultEntityResolver.<init>:()V
            putfield org.apache.commons.configuration.XMLConfiguration.entityResolver:Lorg/xml/sax/EntityResolver;
         2: .line 231
            aload 0 /* this */
            ldc Lorg/apache/commons/configuration/XMLConfiguration;
            invokestatic org.apache.commons.logging.LogFactory.getLog:(Ljava/lang/Class;)Lorg/apache/commons/logging/Log;
            invokevirtual org.apache.commons.configuration.XMLConfiguration.setLogger:(Lorg/apache/commons/logging/Log;)V
         3: .line 232
            return
        end local 0 // org.apache.commons.configuration.XMLConfiguration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/commons/configuration/XMLConfiguration;

  public void <init>(org.apache.commons.configuration.HierarchicalConfiguration);
    descriptor: (Lorg/apache/commons/configuration/HierarchicalConfiguration;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.configuration.XMLConfiguration this
        start local 1 // org.apache.commons.configuration.HierarchicalConfiguration c
         0: .line 246
            aload 0 /* this */
            aload 1 /* c */
            invokespecial org.apache.commons.configuration.AbstractHierarchicalFileConfiguration.<init>:(Lorg/apache/commons/configuration/HierarchicalConfiguration;)V
         1: .line 223
            aload 0 /* this */
            new org.apache.commons.configuration.resolver.DefaultEntityResolver
            dup
            invokespecial org.apache.commons.configuration.resolver.DefaultEntityResolver.<init>:()V
            putfield org.apache.commons.configuration.XMLConfiguration.entityResolver:Lorg/xml/sax/EntityResolver;
         2: .line 247
            aload 0 /* this */
            invokevirtual org.apache.commons.configuration.XMLConfiguration.getRootNode:()Lorg/apache/commons/configuration/tree/ConfigurationNode;
            invokestatic org.apache.commons.configuration.XMLConfiguration.clearReferences:(Lorg/apache/commons/configuration/tree/ConfigurationNode;)V
         3: .line 248
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual org.apache.commons.configuration.XMLConfiguration.getRootNode:()Lorg/apache/commons/configuration/tree/ConfigurationNode;
            invokeinterface org.apache.commons.configuration.tree.ConfigurationNode.getName:()Ljava/lang/String;
            invokevirtual org.apache.commons.configuration.XMLConfiguration.setRootElementName:(Ljava/lang/String;)V
         4: .line 249
            aload 0 /* this */
            ldc Lorg/apache/commons/configuration/XMLConfiguration;
            invokestatic org.apache.commons.logging.LogFactory.getLog:(Ljava/lang/Class;)Lorg/apache/commons/logging/Log;
            invokevirtual org.apache.commons.configuration.XMLConfiguration.setLogger:(Lorg/apache/commons/logging/Log;)V
         5: .line 250
            return
        end local 1 // org.apache.commons.configuration.HierarchicalConfiguration c
        end local 0 // org.apache.commons.configuration.XMLConfiguration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/commons/configuration/XMLConfiguration;
            0    6     1     c  Lorg/apache/commons/configuration/HierarchicalConfiguration;
    MethodParameters:
      Name  Flags
      c     

  public void <init>(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.configuration.XMLConfiguration this
        start local 1 // java.lang.String fileName
         0: .line 261
            aload 0 /* this */
            aload 1 /* fileName */
            invokespecial org.apache.commons.configuration.AbstractHierarchicalFileConfiguration.<init>:(Ljava/lang/String;)V
         1: .line 223
            aload 0 /* this */
            new org.apache.commons.configuration.resolver.DefaultEntityResolver
            dup
            invokespecial org.apache.commons.configuration.resolver.DefaultEntityResolver.<init>:()V
            putfield org.apache.commons.configuration.XMLConfiguration.entityResolver:Lorg/xml/sax/EntityResolver;
         2: .line 262
            aload 0 /* this */
            ldc Lorg/apache/commons/configuration/XMLConfiguration;
            invokestatic org.apache.commons.logging.LogFactory.getLog:(Ljava/lang/Class;)Lorg/apache/commons/logging/Log;
            invokevirtual org.apache.commons.configuration.XMLConfiguration.setLogger:(Lorg/apache/commons/logging/Log;)V
         3: .line 263
            return
        end local 1 // java.lang.String fileName
        end local 0 // org.apache.commons.configuration.XMLConfiguration this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lorg/apache/commons/configuration/XMLConfiguration;
            0    4     1  fileName  Ljava/lang/String;
    Exceptions:
      throws org.apache.commons.configuration.ConfigurationException
    MethodParameters:
          Name  Flags
      fileName  

  public void <init>(java.io.File);
    descriptor: (Ljava/io/File;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.configuration.XMLConfiguration this
        start local 1 // java.io.File file
         0: .line 274
            aload 0 /* this */
            aload 1 /* file */
            invokespecial org.apache.commons.configuration.AbstractHierarchicalFileConfiguration.<init>:(Ljava/io/File;)V
         1: .line 223
            aload 0 /* this */
            new org.apache.commons.configuration.resolver.DefaultEntityResolver
            dup
            invokespecial org.apache.commons.configuration.resolver.DefaultEntityResolver.<init>:()V
            putfield org.apache.commons.configuration.XMLConfiguration.entityResolver:Lorg/xml/sax/EntityResolver;
         2: .line 275
            aload 0 /* this */
            ldc Lorg/apache/commons/configuration/XMLConfiguration;
            invokestatic org.apache.commons.logging.LogFactory.getLog:(Ljava/lang/Class;)Lorg/apache/commons/logging/Log;
            invokevirtual org.apache.commons.configuration.XMLConfiguration.setLogger:(Lorg/apache/commons/logging/Log;)V
         3: .line 276
            return
        end local 1 // java.io.File file
        end local 0 // org.apache.commons.configuration.XMLConfiguration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/commons/configuration/XMLConfiguration;
            0    4     1  file  Ljava/io/File;
    Exceptions:
      throws org.apache.commons.configuration.ConfigurationException
    MethodParameters:
      Name  Flags
      file  

  public void <init>(java.net.URL);
    descriptor: (Ljava/net/URL;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.configuration.XMLConfiguration this
        start local 1 // java.net.URL url
         0: .line 287
            aload 0 /* this */
            aload 1 /* url */
            invokespecial org.apache.commons.configuration.AbstractHierarchicalFileConfiguration.<init>:(Ljava/net/URL;)V
         1: .line 223
            aload 0 /* this */
            new org.apache.commons.configuration.resolver.DefaultEntityResolver
            dup
            invokespecial org.apache.commons.configuration.resolver.DefaultEntityResolver.<init>:()V
            putfield org.apache.commons.configuration.XMLConfiguration.entityResolver:Lorg/xml/sax/EntityResolver;
         2: .line 288
            aload 0 /* this */
            ldc Lorg/apache/commons/configuration/XMLConfiguration;
            invokestatic org.apache.commons.logging.LogFactory.getLog:(Ljava/lang/Class;)Lorg/apache/commons/logging/Log;
            invokevirtual org.apache.commons.configuration.XMLConfiguration.setLogger:(Lorg/apache/commons/logging/Log;)V
         3: .line 289
            return
        end local 1 // java.net.URL url
        end local 0 // org.apache.commons.configuration.XMLConfiguration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/commons/configuration/XMLConfiguration;
            0    4     1   url  Ljava/net/URL;
    Exceptions:
      throws org.apache.commons.configuration.ConfigurationException
    MethodParameters:
      Name  Flags
      url   

  public java.lang.String getRootElementName();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.configuration.XMLConfiguration this
         0: .line 301
            aload 0 /* this */
            invokevirtual org.apache.commons.configuration.XMLConfiguration.getDocument:()Lorg/w3c/dom/Document;
            ifnonnull 4
         1: .line 303
            aload 0 /* this */
            getfield org.apache.commons.configuration.XMLConfiguration.rootElementName:Ljava/lang/String;
            ifnonnull 2
            ldc "configuration"
            goto 3
      StackMap locals:
      StackMap stack:
         2: aload 0 /* this */
            getfield org.apache.commons.configuration.XMLConfiguration.rootElementName:Ljava/lang/String;
      StackMap locals:
      StackMap stack: java.lang.String
         3: areturn
         4: .line 307
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.apache.commons.configuration.XMLConfiguration.getDocument:()Lorg/w3c/dom/Document;
            invokeinterface org.w3c.dom.Document.getDocumentElement:()Lorg/w3c/dom/Element;
            invokeinterface org.w3c.dom.Element.getNodeName:()Ljava/lang/String;
            areturn
        end local 0 // org.apache.commons.configuration.XMLConfiguration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/apache/commons/configuration/XMLConfiguration;

  public void setRootElementName(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.configuration.XMLConfiguration this
        start local 1 // java.lang.String name
         0: .line 325
            aload 0 /* this */
            invokevirtual org.apache.commons.configuration.XMLConfiguration.getDocument:()Lorg/w3c/dom/Document;
            ifnull 2
         1: .line 327
            new java.lang.UnsupportedOperationException
            dup
            ldc "The name of the root element cannot be changed when loaded from an XML document!"
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 330
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* name */
            putfield org.apache.commons.configuration.XMLConfiguration.rootElementName:Ljava/lang/String;
         3: .line 331
            aload 0 /* this */
            invokevirtual org.apache.commons.configuration.XMLConfiguration.getRootNode:()Lorg/apache/commons/configuration/tree/ConfigurationNode;
            aload 1 /* name */
            invokeinterface org.apache.commons.configuration.tree.ConfigurationNode.setName:(Ljava/lang/String;)V
         4: .line 332
            return
        end local 1 // java.lang.String name
        end local 0 // org.apache.commons.configuration.XMLConfiguration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/apache/commons/configuration/XMLConfiguration;
            0    5     1  name  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      name  

  public javax.xml.parsers.DocumentBuilder getDocumentBuilder();
    descriptor: ()Ljavax/xml/parsers/DocumentBuilder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.configuration.XMLConfiguration this
         0: .line 344
            aload 0 /* this */
            getfield org.apache.commons.configuration.XMLConfiguration.documentBuilder:Ljavax/xml/parsers/DocumentBuilder;
            areturn
        end local 0 // org.apache.commons.configuration.XMLConfiguration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/configuration/XMLConfiguration;

  public void setDocumentBuilder(javax.xml.parsers.DocumentBuilder);
    descriptor: (Ljavax/xml/parsers/DocumentBuilder;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.configuration.XMLConfiguration this
        start local 1 // javax.xml.parsers.DocumentBuilder documentBuilder
         0: .line 359
            aload 0 /* this */
            aload 1 /* documentBuilder */
            putfield org.apache.commons.configuration.XMLConfiguration.documentBuilder:Ljavax/xml/parsers/DocumentBuilder;
         1: .line 360
            return
        end local 1 // javax.xml.parsers.DocumentBuilder documentBuilder
        end local 0 // org.apache.commons.configuration.XMLConfiguration this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    2     0             this  Lorg/apache/commons/configuration/XMLConfiguration;
            0    2     1  documentBuilder  Ljavax/xml/parsers/DocumentBuilder;
    MethodParameters:
                 Name  Flags
      documentBuilder  

  public java.lang.String getPublicID();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.configuration.XMLConfiguration this
         0: .line 372
            aload 0 /* this */
            getfield org.apache.commons.configuration.XMLConfiguration.publicID:Ljava/lang/String;
            areturn
        end local 0 // org.apache.commons.configuration.XMLConfiguration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/configuration/XMLConfiguration;

  public void setPublicID(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.configuration.XMLConfiguration this
        start local 1 // java.lang.String publicID
         0: .line 385
            aload 0 /* this */
            aload 1 /* publicID */
            putfield org.apache.commons.configuration.XMLConfiguration.publicID:Ljava/lang/String;
         1: .line 386
            return
        end local 1 // java.lang.String publicID
        end local 0 // org.apache.commons.configuration.XMLConfiguration this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/apache/commons/configuration/XMLConfiguration;
            0    2     1  publicID  Ljava/lang/String;
    MethodParameters:
          Name  Flags
      publicID  

  public java.lang.String getSystemID();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.configuration.XMLConfiguration this
         0: .line 398
            aload 0 /* this */
            getfield org.apache.commons.configuration.XMLConfiguration.systemID:Ljava/lang/String;
            areturn
        end local 0 // org.apache.commons.configuration.XMLConfiguration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/configuration/XMLConfiguration;

  public void setSystemID(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.configuration.XMLConfiguration this
        start local 1 // java.lang.String systemID
         0: .line 411
            aload 0 /* this */
            aload 1 /* systemID */
            putfield org.apache.commons.configuration.XMLConfiguration.systemID:Ljava/lang/String;
         1: .line 412
            return
        end local 1 // java.lang.String systemID
        end local 0 // org.apache.commons.configuration.XMLConfiguration this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/apache/commons/configuration/XMLConfiguration;
            0    2     1  systemID  Ljava/lang/String;
    MethodParameters:
          Name  Flags
      systemID  

  public boolean isValidating();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.configuration.XMLConfiguration this
         0: .line 422
            aload 0 /* this */
            getfield org.apache.commons.configuration.XMLConfiguration.validating:Z
            ireturn
        end local 0 // org.apache.commons.configuration.XMLConfiguration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/configuration/XMLConfiguration;

  public void setValidating(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.configuration.XMLConfiguration this
        start local 1 // boolean validating
         0: .line 435
            aload 0 /* this */
            getfield org.apache.commons.configuration.XMLConfiguration.schemaValidation:Z
            ifne 2
         1: .line 437
            aload 0 /* this */
            iload 1 /* validating */
            putfield org.apache.commons.configuration.XMLConfiguration.validating:Z
         2: .line 439
      StackMap locals:
      StackMap stack:
            return
        end local 1 // boolean validating
        end local 0 // org.apache.commons.configuration.XMLConfiguration this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0        this  Lorg/apache/commons/configuration/XMLConfiguration;
            0    3     1  validating  Z
    MethodParameters:
            Name  Flags
      validating  

  public boolean isSchemaValidation();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.configuration.XMLConfiguration this
         0: .line 450
            aload 0 /* this */
            getfield org.apache.commons.configuration.XMLConfiguration.schemaValidation:Z
            ireturn
        end local 0 // org.apache.commons.configuration.XMLConfiguration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/configuration/XMLConfiguration;

  public void setSchemaValidation(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.configuration.XMLConfiguration this
        start local 1 // boolean schemaValidation
         0: .line 465
            aload 0 /* this */
            iload 1 /* schemaValidation */
            putfield org.apache.commons.configuration.XMLConfiguration.schemaValidation:Z
         1: .line 466
            iload 1 /* schemaValidation */
            ifeq 3
         2: .line 468
            aload 0 /* this */
            iconst_1
            putfield org.apache.commons.configuration.XMLConfiguration.validating:Z
         3: .line 470
      StackMap locals:
      StackMap stack:
            return
        end local 1 // boolean schemaValidation
        end local 0 // org.apache.commons.configuration.XMLConfiguration this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    4     0              this  Lorg/apache/commons/configuration/XMLConfiguration;
            0    4     1  schemaValidation  Z
    MethodParameters:
                  Name  Flags
      schemaValidation  

  public void setEntityResolver(org.xml.sax.EntityResolver);
    descriptor: (Lorg/xml/sax/EntityResolver;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.configuration.XMLConfiguration this
        start local 1 // org.xml.sax.EntityResolver resolver
         0: .line 480
            aload 0 /* this */
            aload 1 /* resolver */
            putfield org.apache.commons.configuration.XMLConfiguration.entityResolver:Lorg/xml/sax/EntityResolver;
         1: .line 481
            return
        end local 1 // org.xml.sax.EntityResolver resolver
        end local 0 // org.apache.commons.configuration.XMLConfiguration this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/apache/commons/configuration/XMLConfiguration;
            0    2     1  resolver  Lorg/xml/sax/EntityResolver;
    MethodParameters:
          Name  Flags
      resolver  

  public org.xml.sax.EntityResolver getEntityResolver();
    descriptor: ()Lorg/xml/sax/EntityResolver;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.configuration.XMLConfiguration this
         0: .line 490
            aload 0 /* this */
            getfield org.apache.commons.configuration.XMLConfiguration.entityResolver:Lorg/xml/sax/EntityResolver;
            areturn
        end local 0 // org.apache.commons.configuration.XMLConfiguration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/configuration/XMLConfiguration;

  public boolean isAttributeSplittingDisabled();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.configuration.XMLConfiguration this
         0: .line 502
            aload 0 /* this */
            getfield org.apache.commons.configuration.XMLConfiguration.attributeSplittingDisabled:Z
            ireturn
        end local 0 // org.apache.commons.configuration.XMLConfiguration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/configuration/XMLConfiguration;

  public void setAttributeSplittingDisabled(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.configuration.XMLConfiguration this
        start local 1 // boolean attributeSplittingDisabled
         0: .line 555
            aload 0 /* this */
            iload 1 /* attributeSplittingDisabled */
            putfield org.apache.commons.configuration.XMLConfiguration.attributeSplittingDisabled:Z
         1: .line 556
            return
        end local 1 // boolean attributeSplittingDisabled
        end local 0 // org.apache.commons.configuration.XMLConfiguration this
      LocalVariableTable:
        Start  End  Slot                        Name  Signature
            0    2     0                        this  Lorg/apache/commons/configuration/XMLConfiguration;
            0    2     1  attributeSplittingDisabled  Z
    MethodParameters:
                            Name  Flags
      attributeSplittingDisabled  

  public org.w3c.dom.Document getDocument();
    descriptor: ()Lorg/w3c/dom/Document;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.configuration.XMLConfiguration this
         0: .line 567
            aload 0 /* this */
            getfield org.apache.commons.configuration.XMLConfiguration.document:Lorg/w3c/dom/Document;
            areturn
        end local 0 // org.apache.commons.configuration.XMLConfiguration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/configuration/XMLConfiguration;

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.commons.configuration.XMLConfiguration this
         0: .line 577
            aload 0 /* this */
            invokespecial org.apache.commons.configuration.AbstractHierarchicalFileConfiguration.clear:()V
         1: .line 578
            aload 0 /* this */
            new org.apache.commons.configuration.HierarchicalConfiguration$Node
            dup
            invokespecial org.apache.commons.configuration.HierarchicalConfiguration$Node.<init>:()V
            invokevirtual org.apache.commons.configuration.XMLConfiguration.setRoot:(Lorg/apache/commons/configuration/HierarchicalConfiguration$Node;)V
         2: .line 579
            aload 0 /* this */
            aconst_null
            putfield org.apache.commons.configuration.XMLConfiguration.document:Lorg/w3c/dom/Document;
         3: .line 580
            return
        end local 0 // org.apache.commons.configuration.XMLConfiguration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/commons/configuration/XMLConfiguration;

  public void initProperties(org.w3c.dom.Document, boolean);
    descriptor: (Lorg/w3c/dom/Document;Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.apache.commons.configuration.XMLConfiguration this
        start local 1 // org.w3c.dom.Document document
        start local 2 // boolean elemRefs
         0: .line 590
            aload 1 /* document */
            invokeinterface org.w3c.dom.Document.getDoctype:()Lorg/w3c/dom/DocumentType;
            ifnull 3
         1: .line 592
            aload 0 /* this */
            aload 1 /* document */
            invokeinterface org.w3c.dom.Document.getDoctype:()Lorg/w3c/dom/DocumentType;
            invokeinterface org.w3c.dom.DocumentType.getPublicId:()Ljava/lang/String;
            invokevirtual org.apache.commons.configuration.XMLConfiguration.setPublicID:(Ljava/lang/String;)V
         2: .line 593
            aload 0 /* this */
            aload 1 /* document */
            invokeinterface org.w3c.dom.Document.getDoctype:()Lorg/w3c/dom/DocumentType;
            invokeinterface org.w3c.dom.DocumentType.getSystemId:()Ljava/lang/String;
            invokevirtual org.apache.commons.configuration.XMLConfiguration.setSystemID:(Ljava/lang/String;)V
         3: .line 596
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual org.apache.commons.configuration.XMLConfiguration.getRoot:()Lorg/apache/commons/configuration/HierarchicalConfiguration$Node;
            aload 1 /* document */
            invokeinterface org.w3c.dom.Document.getDocumentElement:()Lorg/w3c/dom/Element;
            iload 2 /* elemRefs */
            iconst_1
            invokevirtual org.apache.commons.configuration.XMLConfiguration.constructHierarchy:(Lorg/apache/commons/configuration/HierarchicalConfiguration$Node;Lorg/w3c/dom/Element;ZZ)Ljava/util/Map;
            pop
         4: .line 597
            aload 0 /* this */
            invokevirtual org.apache.commons.configuration.XMLConfiguration.getRootNode:()Lorg/apache/commons/configuration/tree/ConfigurationNode;
            aload 1 /* document */
            invokeinterface org.w3c.dom.Document.getDocumentElement:()Lorg/w3c/dom/Element;
            invokeinterface org.w3c.dom.Element.getNodeName:()Ljava/lang/String;
            invokeinterface org.apache.commons.configuration.tree.ConfigurationNode.setName:(Ljava/lang/String;)V
         5: .line 598
            iload 2 /* elemRefs */
            ifeq 7
         6: .line 600
            aload 0 /* this */
            invokevirtual org.apache.commons.configuration.XMLConfiguration.getRoot:()Lorg/apache/commons/configuration/HierarchicalConfiguration$Node;
            aload 1 /* document */
            invokeinterface org.w3c.dom.Document.getDocumentElement:()Lorg/w3c/dom/Element;
            invokevirtual org.apache.commons.configuration.HierarchicalConfiguration$Node.setReference:(Ljava/lang/Object;)V
         7: .line 602
      StackMap locals:
      StackMap stack:
            return
        end local 2 // boolean elemRefs
        end local 1 // org.w3c.dom.Document document
        end local 0 // org.apache.commons.configuration.XMLConfiguration this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    8     0      this  Lorg/apache/commons/configuration/XMLConfiguration;
            0    8     1  document  Lorg/w3c/dom/Document;
            0    8     2  elemRefs  Z
    MethodParameters:
          Name  Flags
      document  
      elemRefs  

  private java.util.Map<java.lang.String, java.util.Collection<java.lang.String>> constructHierarchy(org.apache.commons.configuration.HierarchicalConfiguration$Node, org.w3c.dom.Element, boolean, boolean);
    descriptor: (Lorg/apache/commons/configuration/HierarchicalConfiguration$Node;Lorg/w3c/dom/Element;ZZ)Ljava/util/Map;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=16, args_size=5
        start local 0 // org.apache.commons.configuration.XMLConfiguration this
        start local 1 // org.apache.commons.configuration.HierarchicalConfiguration$Node node
        start local 2 // org.w3c.dom.Element element
        start local 3 // boolean elemRefs
        start local 4 // boolean trim
         0: .line 621
            aload 0 /* this */
            aload 2 /* element */
            iload 4 /* trim */
            invokevirtual org.apache.commons.configuration.XMLConfiguration.shouldTrim:(Lorg/w3c/dom/Element;Z)Z
            istore 5 /* trimFlag */
        start local 5 // boolean trimFlag
         1: .line 623
            aload 0 /* this */
            aload 1 /* node */
            aload 2 /* element */
            iload 3 /* elemRefs */
            invokevirtual org.apache.commons.configuration.XMLConfiguration.processAttributes:(Lorg/apache/commons/configuration/HierarchicalConfiguration$Node;Lorg/w3c/dom/Element;Z)Ljava/util/Map;
         2: .line 622
            astore 6 /* attributes */
        start local 6 // java.util.Map attributes
         3: .line 624
            aload 6 /* attributes */
            ldc "xml:space"
            iload 5 /* trimFlag */
            invokestatic java.lang.String.valueOf:(Z)Ljava/lang/String;
            invokestatic java.util.Collections.singleton:(Ljava/lang/Object;)Ljava/util/Set;
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         4: .line 625
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 7 /* buffer */
        start local 7 // java.lang.StringBuilder buffer
         5: .line 626
            aload 2 /* element */
            invokeinterface org.w3c.dom.Element.getChildNodes:()Lorg/w3c/dom/NodeList;
            astore 8 /* list */
        start local 8 // org.w3c.dom.NodeList list
         6: .line 627
            iconst_0
            istore 9 /* i */
        start local 9 // int i
         7: goto 29
         8: .line 629
      StackMap locals: org.apache.commons.configuration.XMLConfiguration org.apache.commons.configuration.HierarchicalConfiguration$Node org.w3c.dom.Element int int int java.util.Map java.lang.StringBuilder org.w3c.dom.NodeList int
      StackMap stack:
            aload 8 /* list */
            iload 9 /* i */
            invokeinterface org.w3c.dom.NodeList.item:(I)Lorg/w3c/dom/Node;
            astore 10 /* w3cNode */
        start local 10 // org.w3c.dom.Node w3cNode
         9: .line 630
            aload 10 /* w3cNode */
            instanceof org.w3c.dom.Element
            ifeq 25
        10: .line 632
            aload 10 /* w3cNode */
            checkcast org.w3c.dom.Element
            astore 11 /* child */
        start local 11 // org.w3c.dom.Element child
        11: .line 633
            new org.apache.commons.configuration.XMLConfiguration$XMLNode
            dup
            aload 0 /* this */
            aload 11 /* child */
            invokeinterface org.w3c.dom.Element.getTagName:()Ljava/lang/String;
        12: .line 634
            iload 3 /* elemRefs */
            ifeq 13
            aload 11 /* child */
            goto 14
      StackMap locals: org.apache.commons.configuration.XMLConfiguration org.apache.commons.configuration.HierarchicalConfiguration$Node org.w3c.dom.Element int int int java.util.Map java.lang.StringBuilder org.w3c.dom.NodeList int org.w3c.dom.Node org.w3c.dom.Element
      StackMap stack: new 11 new 11 org.apache.commons.configuration.XMLConfiguration java.lang.String
        13: aconst_null
        14: .line 633
      StackMap locals: org.apache.commons.configuration.XMLConfiguration org.apache.commons.configuration.HierarchicalConfiguration$Node org.w3c.dom.Element int int int java.util.Map java.lang.StringBuilder org.w3c.dom.NodeList int org.w3c.dom.Node org.w3c.dom.Element
      StackMap stack: new 11 new 11 org.apache.commons.configuration.XMLConfiguration java.lang.String org.w3c.dom.Element
            invokespecial org.apache.commons.configuration.XMLConfiguration$XMLNode.<init>:(Lorg/apache/commons/configuration/XMLConfiguration;Ljava/lang/String;Lorg/w3c/dom/Element;)V
            astore 12 /* childNode */
        start local 12 // org.apache.commons.configuration.HierarchicalConfiguration$Node childNode
        15: .line 636
            aload 0 /* this */
            aload 12 /* childNode */
            aload 11 /* child */
            iload 3 /* elemRefs */
            iload 5 /* trimFlag */
            invokevirtual org.apache.commons.configuration.XMLConfiguration.constructHierarchy:(Lorg/apache/commons/configuration/HierarchicalConfiguration$Node;Lorg/w3c/dom/Element;ZZ)Ljava/util/Map;
        16: .line 635
            astore 13 /* attrmap */
        start local 13 // java.util.Map attrmap
        17: .line 637
            aload 1 /* node */
            aload 12 /* childNode */
            invokevirtual org.apache.commons.configuration.HierarchicalConfiguration$Node.addChild:(Lorg/apache/commons/configuration/HierarchicalConfiguration$Node;)V
        18: .line 638
            aload 13 /* attrmap */
            ldc "xml:space"
            invokeinterface java.util.Map.remove:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.util.Collection
            astore 14 /* attrSpace */
        start local 14 // java.util.Collection attrSpace
        19: .line 640
            aload 14 /* attrSpace */
            invokestatic org.apache.commons.collections.CollectionUtils.isEmpty:(Ljava/util/Collection;)Z
            ifeq 21
        20: .line 641
            getstatic java.lang.Boolean.FALSE:Ljava/lang/Boolean;
            goto 22
        21: .line 642
      StackMap locals: org.apache.commons.configuration.HierarchicalConfiguration$Node java.util.Map java.util.Collection
      StackMap stack:
            aload 14 /* attrSpace */
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.String
            invokestatic java.lang.Boolean.valueOf:(Ljava/lang/String;)Ljava/lang/Boolean;
        22: .line 640
      StackMap locals:
      StackMap stack: java.lang.Boolean
            astore 15 /* childTrim */
        start local 15 // java.lang.Boolean childTrim
        23: .line 644
            aload 0 /* this */
            aload 1 /* node */
            aload 12 /* childNode */
            aload 15 /* childTrim */
            invokevirtual java.lang.Boolean.booleanValue:()Z
            aload 13 /* attrmap */
            invokevirtual org.apache.commons.configuration.XMLConfiguration.handleDelimiters:(Lorg/apache/commons/configuration/HierarchicalConfiguration$Node;Lorg/apache/commons/configuration/HierarchicalConfiguration$Node;ZLjava/util/Map;)V
        end local 15 // java.lang.Boolean childTrim
        end local 14 // java.util.Collection attrSpace
        end local 13 // java.util.Map attrmap
        end local 12 // org.apache.commons.configuration.HierarchicalConfiguration$Node childNode
        end local 11 // org.w3c.dom.Element child
        24: .line 645
            goto 28
        25: .line 646
      StackMap locals: org.apache.commons.configuration.XMLConfiguration org.apache.commons.configuration.HierarchicalConfiguration$Node org.w3c.dom.Element int int int java.util.Map java.lang.StringBuilder org.w3c.dom.NodeList int org.w3c.dom.Node
      StackMap stack:
            aload 10 /* w3cNode */
            instanceof org.w3c.dom.Text
            ifeq 28
        26: .line 648
            aload 10 /* w3cNode */
            checkcast org.w3c.dom.Text
            astore 11 /* data */
        start local 11 // org.w3c.dom.Text data
        27: .line 649
            aload 7 /* buffer */
            aload 11 /* data */
            invokeinterface org.w3c.dom.Text.getData:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        end local 11 // org.w3c.dom.Text data
        end local 10 // org.w3c.dom.Node w3cNode
        28: .line 627
      StackMap locals:
      StackMap stack:
            iinc 9 /* i */ 1
      StackMap locals:
      StackMap stack:
        29: iload 9 /* i */
            aload 8 /* list */
            invokeinterface org.w3c.dom.NodeList.getLength:()I
            if_icmplt 8
        end local 9 // int i
        30: .line 653
            aload 1 /* node */
            aload 7 /* buffer */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            iload 5 /* trimFlag */
            invokestatic org.apache.commons.configuration.XMLConfiguration.determineValue:(Lorg/apache/commons/configuration/tree/ConfigurationNode;Ljava/lang/String;Z)Ljava/lang/String;
            astore 9 /* text */
        start local 9 // java.lang.String text
        31: .line 654
            aload 9 /* text */
            invokevirtual java.lang.String.length:()I
            ifgt 32
            aload 1 /* node */
            invokevirtual org.apache.commons.configuration.HierarchicalConfiguration$Node.hasChildren:()Z
            ifne 33
            aload 1 /* node */
            aload 0 /* this */
            invokevirtual org.apache.commons.configuration.XMLConfiguration.getRoot:()Lorg/apache/commons/configuration/HierarchicalConfiguration$Node;
            if_acmpeq 33
        32: .line 656
      StackMap locals: org.apache.commons.configuration.XMLConfiguration org.apache.commons.configuration.HierarchicalConfiguration$Node org.w3c.dom.Element int int int java.util.Map java.lang.StringBuilder org.w3c.dom.NodeList java.lang.String
      StackMap stack:
            aload 1 /* node */
            aload 9 /* text */
            invokevirtual org.apache.commons.configuration.HierarchicalConfiguration$Node.setValue:(Ljava/lang/Object;)V
        33: .line 658
      StackMap locals:
      StackMap stack:
            aload 6 /* attributes */
            areturn
        end local 9 // java.lang.String text
        end local 8 // org.w3c.dom.NodeList list
        end local 7 // java.lang.StringBuilder buffer
        end local 6 // java.util.Map attributes
        end local 5 // boolean trimFlag
        end local 4 // boolean trim
        end local 3 // boolean elemRefs
        end local 2 // org.w3c.dom.Element element
        end local 1 // org.apache.commons.configuration.HierarchicalConfiguration$Node node
        end local 0 // org.apache.commons.configuration.XMLConfiguration this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   34     0        this  Lorg/apache/commons/configuration/XMLConfiguration;
            0   34     1        node  Lorg/apache/commons/configuration/HierarchicalConfiguration$Node;
            0   34     2     element  Lorg/w3c/dom/Element;
            0   34     3    elemRefs  Z
            0   34     4        trim  Z
            1   34     5    trimFlag  Z
            3   34     6  attributes  Ljava/util/Map<Ljava/lang/String;Ljava/util/Collection<Ljava/lang/String;>;>;
            5   34     7      buffer  Ljava/lang/StringBuilder;
            6   34     8        list  Lorg/w3c/dom/NodeList;
            7   30     9           i  I
            9   28    10     w3cNode  Lorg/w3c/dom/Node;
           11   24    11       child  Lorg/w3c/dom/Element;
           15   24    12   childNode  Lorg/apache/commons/configuration/HierarchicalConfiguration$Node;
           17   24    13     attrmap  Ljava/util/Map<Ljava/lang/String;Ljava/util/Collection<Ljava/lang/String;>;>;
           19   24    14   attrSpace  Ljava/util/Collection<Ljava/lang/String;>;
           23   24    15   childTrim  Ljava/lang/Boolean;
           27   28    11        data  Lorg/w3c/dom/Text;
           31   34     9        text  Ljava/lang/String;
    Signature: (Lorg/apache/commons/configuration/HierarchicalConfiguration$Node;Lorg/w3c/dom/Element;ZZ)Ljava/util/Map<Ljava/lang/String;Ljava/util/Collection<Ljava/lang/String;>;>;
    MethodParameters:
          Name  Flags
      node      
      element   
      elemRefs  
      trim      

  private static java.lang.String determineValue(org.apache.commons.configuration.tree.ConfigurationNode, java.lang.String, boolean);
    descriptor: (Lorg/apache/commons/configuration/tree/ConfigurationNode;Ljava/lang/String;Z)Ljava/lang/String;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=1, locals=4, args_size=3
        start local 0 // org.apache.commons.configuration.tree.ConfigurationNode node
        start local 1 // java.lang.String content
        start local 2 // boolean trimFlag
         0: .line 677
            iload 2 /* trimFlag */
            ifne 5
         1: .line 678
            aload 1 /* content */
            invokestatic org.apache.commons.lang.StringUtils.isBlank:(Ljava/lang/String;)Z
            ifeq 4
            aload 0 /* node */
         2: .line 679
            invokeinterface org.apache.commons.configuration.tree.ConfigurationNode.getChildrenCount:()I
         3: .line 676
            ifgt 5
      StackMap locals:
      StackMap stack:
         4: iconst_0
            goto 6
      StackMap locals:
      StackMap stack:
         5: iconst_1
      StackMap locals:
      StackMap stack: int
         6: istore 3 /* shouldTrim */
        start local 3 // boolean shouldTrim
         7: .line 680
            iload 3 /* shouldTrim */
            ifeq 8
            aload 1 /* content */
            invokevirtual java.lang.String.trim:()Ljava/lang/String;
            goto 9
      StackMap locals: int
      StackMap stack:
         8: aload 1 /* content */
      StackMap locals:
      StackMap stack: java.lang.String
         9: areturn
        end local 3 // boolean shouldTrim
        end local 2 // boolean trimFlag
        end local 1 // java.lang.String content
        end local 0 // org.apache.commons.configuration.tree.ConfigurationNode node
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   10     0        node  Lorg/apache/commons/configuration/tree/ConfigurationNode;
            0   10     1     content  Ljava/lang/String;
            0   10     2    trimFlag  Z
            7   10     3  shouldTrim  Z
    MethodParameters:
          Name  Flags
      node      
      content   
      trimFlag  

  private java.util.Map<java.lang.String, java.util.Collection<java.lang.String>> processAttributes(org.apache.commons.configuration.HierarchicalConfiguration$Node, org.w3c.dom.Element, boolean);
    descriptor: (Lorg/apache/commons/configuration/HierarchicalConfiguration$Node;Lorg/w3c/dom/Element;Z)Ljava/util/Map;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=10, args_size=4
        start local 0 // org.apache.commons.configuration.XMLConfiguration this
        start local 1 // org.apache.commons.configuration.HierarchicalConfiguration$Node node
        start local 2 // org.w3c.dom.Element element
        start local 3 // boolean elemRefs
         0: .line 695
            aload 2 /* element */
            invokeinterface org.w3c.dom.Element.getAttributes:()Lorg/w3c/dom/NamedNodeMap;
            astore 4 /* attributes */
        start local 4 // org.w3c.dom.NamedNodeMap attributes
         1: .line 696
            new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
            astore 5 /* attrmap */
        start local 5 // java.util.Map attrmap
         2: .line 698
            iconst_0
            istore 6 /* i */
        start local 6 // int i
         3: goto 17
         4: .line 700
      StackMap locals: org.w3c.dom.NamedNodeMap java.util.Map int
      StackMap stack:
            aload 4 /* attributes */
            iload 6 /* i */
            invokeinterface org.w3c.dom.NamedNodeMap.item:(I)Lorg/w3c/dom/Node;
            astore 7 /* w3cNode */
        start local 7 // org.w3c.dom.Node w3cNode
         5: .line 701
            aload 7 /* w3cNode */
            instanceof org.w3c.dom.Attr
            ifeq 16
         6: .line 703
            aload 7 /* w3cNode */
            checkcast org.w3c.dom.Attr
            astore 8 /* attr */
        start local 8 // org.w3c.dom.Attr attr
         7: .line 705
            aload 0 /* this */
            invokevirtual org.apache.commons.configuration.XMLConfiguration.isAttributeSplittingDisabled:()Z
            ifeq 10
         8: .line 707
            aload 8 /* attr */
            invokeinterface org.w3c.dom.Attr.getValue:()Ljava/lang/String;
            invokestatic java.util.Collections.singletonList:(Ljava/lang/Object;)Ljava/util/List;
            astore 9 /* values */
        start local 9 // java.util.List values
         9: .line 708
            goto 14
        end local 9 // java.util.List values
        10: .line 711
      StackMap locals: org.w3c.dom.Node org.w3c.dom.Attr
      StackMap stack:
            aload 8 /* attr */
            invokeinterface org.w3c.dom.Attr.getValue:()Ljava/lang/String;
        11: .line 712
            aload 0 /* this */
            invokevirtual org.apache.commons.configuration.XMLConfiguration.isDelimiterParsingDisabled:()Z
            ifeq 12
            bipush 124
            goto 13
        12: .line 713
      StackMap locals:
      StackMap stack: java.lang.String
            aload 0 /* this */
            invokevirtual org.apache.commons.configuration.XMLConfiguration.getListDelimiter:()C
        13: .line 711
      StackMap locals: org.apache.commons.configuration.XMLConfiguration org.apache.commons.configuration.HierarchicalConfiguration$Node org.w3c.dom.Element int org.w3c.dom.NamedNodeMap java.util.Map int org.w3c.dom.Node org.w3c.dom.Attr
      StackMap stack: java.lang.String int
            invokestatic org.apache.commons.configuration.PropertyConverter.split:(Ljava/lang/String;C)Ljava/util/List;
            astore 9 /* values */
        start local 9 // java.util.List values
        14: .line 716
      StackMap locals: java.util.List
      StackMap stack:
            aload 0 /* this */
            aload 1 /* node */
            aload 2 /* element */
            iload 3 /* elemRefs */
            aload 8 /* attr */
            invokeinterface org.w3c.dom.Attr.getName:()Ljava/lang/String;
            aload 9 /* values */
            invokevirtual org.apache.commons.configuration.XMLConfiguration.appendAttributes:(Lorg/apache/commons/configuration/HierarchicalConfiguration$Node;Lorg/w3c/dom/Element;ZLjava/lang/String;Ljava/util/Collection;)V
        15: .line 717
            aload 5 /* attrmap */
            aload 8 /* attr */
            invokeinterface org.w3c.dom.Attr.getName:()Ljava/lang/String;
            aload 9 /* values */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
        end local 9 // java.util.List values
        end local 8 // org.w3c.dom.Attr attr
        end local 7 // org.w3c.dom.Node w3cNode
        16: .line 698
      StackMap locals:
      StackMap stack:
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        17: iload 6 /* i */
            aload 4 /* attributes */
            invokeinterface org.w3c.dom.NamedNodeMap.getLength:()I
            if_icmplt 4
        end local 6 // int i
        18: .line 721
            aload 5 /* attrmap */
            areturn
        end local 5 // java.util.Map attrmap
        end local 4 // org.w3c.dom.NamedNodeMap attributes
        end local 3 // boolean elemRefs
        end local 2 // org.w3c.dom.Element element
        end local 1 // org.apache.commons.configuration.HierarchicalConfiguration$Node node
        end local 0 // org.apache.commons.configuration.XMLConfiguration this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   19     0        this  Lorg/apache/commons/configuration/XMLConfiguration;
            0   19     1        node  Lorg/apache/commons/configuration/HierarchicalConfiguration$Node;
            0   19     2     element  Lorg/w3c/dom/Element;
            0   19     3    elemRefs  Z
            1   19     4  attributes  Lorg/w3c/dom/NamedNodeMap;
            2   19     5     attrmap  Ljava/util/Map<Ljava/lang/String;Ljava/util/Collection<Ljava/lang/String;>;>;
            3   18     6           i  I
            5   16     7     w3cNode  Lorg/w3c/dom/Node;
            7   16     8        attr  Lorg/w3c/dom/Attr;
            9   10     9      values  Ljava/util/List<Ljava/lang/String;>;
           14   16     9      values  Ljava/util/List<Ljava/lang/String;>;
    Signature: (Lorg/apache/commons/configuration/HierarchicalConfiguration$Node;Lorg/w3c/dom/Element;Z)Ljava/util/Map<Ljava/lang/String;Ljava/util/Collection<Ljava/lang/String;>;>;
    MethodParameters:
          Name  Flags
      node      
      element   
      elemRefs  

  private void appendAttributes(org.apache.commons.configuration.HierarchicalConfiguration$Node, org.w3c.dom.Element, boolean, java.lang.String, java.util.Collection<java.lang.String>);
    descriptor: (Lorg/apache/commons/configuration/HierarchicalConfiguration$Node;Lorg/w3c/dom/Element;ZLjava/lang/String;Ljava/util/Collection;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=9, args_size=6
        start local 0 // org.apache.commons.configuration.XMLConfiguration this
        start local 1 // org.apache.commons.configuration.HierarchicalConfiguration$Node node
        start local 2 // org.w3c.dom.Element element
        start local 3 // boolean elemRefs
        start local 4 // java.lang.String attr
        start local 5 // java.util.Collection values
         0: .line 736
            aload 5 /* values */
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 7
            goto 7
      StackMap locals: org.apache.commons.configuration.XMLConfiguration org.apache.commons.configuration.HierarchicalConfiguration$Node org.w3c.dom.Element int java.lang.String java.util.Collection top java.util.Iterator
      StackMap stack:
         1: aload 7
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.String
            astore 6 /* value */
        start local 6 // java.lang.String value
         2: .line 738
            new org.apache.commons.configuration.XMLConfiguration$XMLNode
            dup
            aload 0 /* this */
            aload 4 /* attr */
            iload 3 /* elemRefs */
            ifeq 3
            aload 2 /* element */
            goto 4
      StackMap locals: org.apache.commons.configuration.XMLConfiguration org.apache.commons.configuration.HierarchicalConfiguration$Node org.w3c.dom.Element int java.lang.String java.util.Collection java.lang.String java.util.Iterator
      StackMap stack: new 2 new 2 org.apache.commons.configuration.XMLConfiguration java.lang.String
         3: aconst_null
      StackMap locals: org.apache.commons.configuration.XMLConfiguration org.apache.commons.configuration.HierarchicalConfiguration$Node org.w3c.dom.Element int java.lang.String java.util.Collection java.lang.String java.util.Iterator
      StackMap stack: new 2 new 2 org.apache.commons.configuration.XMLConfiguration java.lang.String org.w3c.dom.Element
         4: invokespecial org.apache.commons.configuration.XMLConfiguration$XMLNode.<init>:(Lorg/apache/commons/configuration/XMLConfiguration;Ljava/lang/String;Lorg/w3c/dom/Element;)V
            astore 8 /* child */
        start local 8 // org.apache.commons.configuration.HierarchicalConfiguration$Node child
         5: .line 739
            aload 8 /* child */
            aload 6 /* value */
            invokevirtual org.apache.commons.configuration.HierarchicalConfiguration$Node.setValue:(Ljava/lang/Object;)V
         6: .line 740
            aload 1 /* node */
            aload 8 /* child */
            invokevirtual org.apache.commons.configuration.HierarchicalConfiguration$Node.addAttribute:(Lorg/apache/commons/configuration/tree/ConfigurationNode;)V
        end local 8 // org.apache.commons.configuration.HierarchicalConfiguration$Node child
        end local 6 // java.lang.String value
         7: .line 736
      StackMap locals: org.apache.commons.configuration.XMLConfiguration org.apache.commons.configuration.HierarchicalConfiguration$Node org.w3c.dom.Element int java.lang.String java.util.Collection top java.util.Iterator
      StackMap stack:
            aload 7
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 1
         8: .line 742
            return
        end local 5 // java.util.Collection values
        end local 4 // java.lang.String attr
        end local 3 // boolean elemRefs
        end local 2 // org.w3c.dom.Element element
        end local 1 // org.apache.commons.configuration.HierarchicalConfiguration$Node node
        end local 0 // org.apache.commons.configuration.XMLConfiguration this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    9     0      this  Lorg/apache/commons/configuration/XMLConfiguration;
            0    9     1      node  Lorg/apache/commons/configuration/HierarchicalConfiguration$Node;
            0    9     2   element  Lorg/w3c/dom/Element;
            0    9     3  elemRefs  Z
            0    9     4      attr  Ljava/lang/String;
            0    9     5    values  Ljava/util/Collection<Ljava/lang/String;>;
            2    7     6     value  Ljava/lang/String;
            5    7     8     child  Lorg/apache/commons/configuration/HierarchicalConfiguration$Node;
    Signature: (Lorg/apache/commons/configuration/HierarchicalConfiguration$Node;Lorg/w3c/dom/Element;ZLjava/lang/String;Ljava/util/Collection<Ljava/lang/String;>;)V
    MethodParameters:
          Name  Flags
      node      
      element   
      elemRefs  
      attr      
      values    

  private void handleDelimiters(org.apache.commons.configuration.HierarchicalConfiguration$Node, org.apache.commons.configuration.HierarchicalConfiguration$Node, boolean, java.util.Map<java.lang.String, java.util.Collection<java.lang.String>>);
    descriptor: (Lorg/apache/commons/configuration/HierarchicalConfiguration$Node;Lorg/apache/commons/configuration/HierarchicalConfiguration$Node;ZLjava/util/Map;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=10, args_size=5
        start local 0 // org.apache.commons.configuration.XMLConfiguration this
        start local 1 // org.apache.commons.configuration.HierarchicalConfiguration$Node parent
        start local 2 // org.apache.commons.configuration.HierarchicalConfiguration$Node child
        start local 3 // boolean trim
        start local 4 // java.util.Map attrmap
         0: .line 756
            aload 2 /* child */
            invokevirtual org.apache.commons.configuration.HierarchicalConfiguration$Node.getValue:()Ljava/lang/Object;
            ifnull 34
         1: .line 759
            aload 0 /* this */
            invokevirtual org.apache.commons.configuration.XMLConfiguration.isDelimiterParsingDisabled:()Z
            ifeq 5
         2: .line 761
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 5 /* values */
        start local 5 // java.util.List values
         3: .line 762
            aload 5 /* values */
            aload 2 /* child */
            invokevirtual org.apache.commons.configuration.HierarchicalConfiguration$Node.getValue:()Ljava/lang/Object;
            invokevirtual java.lang.Object.toString:()Ljava/lang/String;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         4: .line 763
            goto 8
        end local 5 // java.util.List values
         5: .line 766
      StackMap locals:
      StackMap stack:
            aload 2 /* child */
            invokevirtual org.apache.commons.configuration.HierarchicalConfiguration$Node.getValue:()Ljava/lang/Object;
            invokevirtual java.lang.Object.toString:()Ljava/lang/String;
         6: .line 767
            aload 0 /* this */
            invokevirtual org.apache.commons.configuration.XMLConfiguration.getListDelimiter:()C
            iload 3 /* trim */
         7: .line 766
            invokestatic org.apache.commons.configuration.PropertyConverter.split:(Ljava/lang/String;CZ)Ljava/util/List;
            astore 5 /* values */
        start local 5 // java.util.List values
         8: .line 770
      StackMap locals: java.util.List
      StackMap stack:
            aload 5 /* values */
            invokeinterface java.util.List.size:()I
            iconst_1
            if_icmple 32
         9: .line 772
            aload 5 /* values */
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 6 /* it */
        start local 6 // java.util.Iterator it
        10: .line 774
            aload 0 /* this */
            aload 2 /* child */
            invokevirtual org.apache.commons.configuration.HierarchicalConfiguration$Node.getName:()Ljava/lang/String;
            invokevirtual org.apache.commons.configuration.XMLConfiguration.createNode:(Ljava/lang/String;)Lorg/apache/commons/configuration/HierarchicalConfiguration$Node;
            astore 7 /* c */
        start local 7 // org.apache.commons.configuration.HierarchicalConfiguration$Node c
        11: .line 775
            aload 7 /* c */
            aload 6 /* it */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            invokevirtual org.apache.commons.configuration.HierarchicalConfiguration$Node.setValue:(Ljava/lang/Object;)V
        12: .line 777
            aload 2 /* child */
            invokevirtual org.apache.commons.configuration.HierarchicalConfiguration$Node.getAttributes:()Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 9
            goto 16
      StackMap locals: org.apache.commons.configuration.XMLConfiguration org.apache.commons.configuration.HierarchicalConfiguration$Node org.apache.commons.configuration.HierarchicalConfiguration$Node int java.util.Map java.util.List java.util.Iterator org.apache.commons.configuration.HierarchicalConfiguration$Node top java.util.Iterator
      StackMap stack:
        13: aload 9
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.commons.configuration.tree.ConfigurationNode
            astore 8 /* ndAttr */
        start local 8 // org.apache.commons.configuration.tree.ConfigurationNode ndAttr
        14: .line 779
            aload 8 /* ndAttr */
            aconst_null
            invokeinterface org.apache.commons.configuration.tree.ConfigurationNode.setReference:(Ljava/lang/Object;)V
        15: .line 780
            aload 7 /* c */
            aload 8 /* ndAttr */
            invokevirtual org.apache.commons.configuration.HierarchicalConfiguration$Node.addAttribute:(Lorg/apache/commons/configuration/tree/ConfigurationNode;)V
        end local 8 // org.apache.commons.configuration.tree.ConfigurationNode ndAttr
        16: .line 777
      StackMap locals:
      StackMap stack:
            aload 9
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 13
        17: .line 782
            aload 1 /* parent */
            aload 2 /* child */
            invokevirtual org.apache.commons.configuration.HierarchicalConfiguration$Node.remove:(Lorg/apache/commons/configuration/HierarchicalConfiguration$Node;)Z
            pop
        18: .line 783
            aload 1 /* parent */
            aload 7 /* c */
            invokevirtual org.apache.commons.configuration.HierarchicalConfiguration$Node.addChild:(Lorg/apache/commons/configuration/HierarchicalConfiguration$Node;)V
        19: .line 786
            goto 30
        20: .line 788
      StackMap locals: org.apache.commons.configuration.XMLConfiguration org.apache.commons.configuration.HierarchicalConfiguration$Node org.apache.commons.configuration.HierarchicalConfiguration$Node int java.util.Map java.util.List java.util.Iterator org.apache.commons.configuration.HierarchicalConfiguration$Node
      StackMap stack:
            new org.apache.commons.configuration.XMLConfiguration$XMLNode
            dup
            aload 0 /* this */
            aload 2 /* child */
            invokevirtual org.apache.commons.configuration.HierarchicalConfiguration$Node.getName:()Ljava/lang/String;
            aconst_null
            invokespecial org.apache.commons.configuration.XMLConfiguration$XMLNode.<init>:(Lorg/apache/commons/configuration/XMLConfiguration;Ljava/lang/String;Lorg/w3c/dom/Element;)V
            astore 7 /* c */
        21: .line 789
            aload 7 /* c */
            aload 6 /* it */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            invokevirtual org.apache.commons.configuration.HierarchicalConfiguration$Node.setValue:(Ljava/lang/Object;)V
        22: .line 790
            aload 4 /* attrmap */
        23: .line 791
            invokeinterface java.util.Map.entrySet:()Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 9
            goto 28
      StackMap locals: org.apache.commons.configuration.XMLConfiguration org.apache.commons.configuration.HierarchicalConfiguration$Node org.apache.commons.configuration.HierarchicalConfiguration$Node int java.util.Map java.util.List java.util.Iterator org.apache.commons.configuration.HierarchicalConfiguration$Node top java.util.Iterator
      StackMap stack:
        24: aload 9
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.util.Map$Entry
            astore 8 /* e */
        start local 8 // java.util.Map$Entry e
        25: .line 793
            aload 0 /* this */
            aload 7 /* c */
            aconst_null
            iconst_0
            aload 8 /* e */
            invokeinterface java.util.Map$Entry.getKey:()Ljava/lang/Object;
            checkcast java.lang.String
        26: .line 794
            aload 8 /* e */
            invokeinterface java.util.Map$Entry.getValue:()Ljava/lang/Object;
            checkcast java.util.Collection
        27: .line 793
            invokevirtual org.apache.commons.configuration.XMLConfiguration.appendAttributes:(Lorg/apache/commons/configuration/HierarchicalConfiguration$Node;Lorg/w3c/dom/Element;ZLjava/lang/String;Ljava/util/Collection;)V
        end local 8 // java.util.Map$Entry e
        28: .line 790
      StackMap locals:
      StackMap stack:
            aload 9
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 24
        29: .line 796
            aload 1 /* parent */
            aload 7 /* c */
            invokevirtual org.apache.commons.configuration.HierarchicalConfiguration$Node.addChild:(Lorg/apache/commons/configuration/HierarchicalConfiguration$Node;)V
        30: .line 786
      StackMap locals: org.apache.commons.configuration.XMLConfiguration org.apache.commons.configuration.HierarchicalConfiguration$Node org.apache.commons.configuration.HierarchicalConfiguration$Node int java.util.Map java.util.List java.util.Iterator org.apache.commons.configuration.HierarchicalConfiguration$Node
      StackMap stack:
            aload 6 /* it */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 20
        end local 7 // org.apache.commons.configuration.HierarchicalConfiguration$Node c
        end local 6 // java.util.Iterator it
        31: .line 798
            goto 34
        32: .line 799
      StackMap locals:
      StackMap stack:
            aload 5 /* values */
            invokeinterface java.util.List.size:()I
            iconst_1
            if_icmpne 34
        33: .line 803
            aload 2 /* child */
            aload 5 /* values */
            iconst_0
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            invokevirtual org.apache.commons.configuration.HierarchicalConfiguration$Node.setValue:(Ljava/lang/Object;)V
        end local 5 // java.util.List values
        34: .line 806
      StackMap locals:
      StackMap stack:
            return
        end local 4 // java.util.Map attrmap
        end local 3 // boolean trim
        end local 2 // org.apache.commons.configuration.HierarchicalConfiguration$Node child
        end local 1 // org.apache.commons.configuration.HierarchicalConfiguration$Node parent
        end local 0 // org.apache.commons.configuration.XMLConfiguration this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   35     0     this  Lorg/apache/commons/configuration/XMLConfiguration;
            0   35     1   parent  Lorg/apache/commons/configuration/HierarchicalConfiguration$Node;
            0   35     2    child  Lorg/apache/commons/configuration/HierarchicalConfiguration$Node;
            0   35     3     trim  Z
            0   35     4  attrmap  Ljava/util/Map<Ljava/lang/String;Ljava/util/Collection<Ljava/lang/String;>;>;
            3    5     5   values  Ljava/util/List<Ljava/lang/String;>;
            8   34     5   values  Ljava/util/List<Ljava/lang/String;>;
           10   31     6       it  Ljava/util/Iterator<Ljava/lang/String;>;
           11   31     7        c  Lorg/apache/commons/configuration/HierarchicalConfiguration$Node;
           14   16     8   ndAttr  Lorg/apache/commons/configuration/tree/ConfigurationNode;
           25   28     8        e  Ljava/util/Map$Entry<Ljava/lang/String;Ljava/util/Collection<Ljava/lang/String;>;>;
    Signature: (Lorg/apache/commons/configuration/HierarchicalConfiguration$Node;Lorg/apache/commons/configuration/HierarchicalConfiguration$Node;ZLjava/util/Map<Ljava/lang/String;Ljava/util/Collection<Ljava/lang/String;>;>;)V
    MethodParameters:
         Name  Flags
      parent   
      child    
      trim     
      attrmap  

  private boolean shouldTrim(org.w3c.dom.Element, boolean);
    descriptor: (Lorg/w3c/dom/Element;Z)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // org.apache.commons.configuration.XMLConfiguration this
        start local 1 // org.w3c.dom.Element element
        start local 2 // boolean currentTrim
         0: .line 821
            aload 1 /* element */
            ldc "xml:space"
            invokeinterface org.w3c.dom.Element.getAttributeNode:(Ljava/lang/String;)Lorg/w3c/dom/Attr;
            astore 3 /* attr */
        start local 3 // org.w3c.dom.Attr attr
         1: .line 823
            aload 3 /* attr */
            ifnonnull 3
         2: .line 825
            iload 2 /* currentTrim */
            ireturn
         3: .line 829
      StackMap locals: org.w3c.dom.Attr
      StackMap stack:
            ldc "preserve"
            aload 3 /* attr */
            invokeinterface org.w3c.dom.Attr.getValue:()Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 4
            iconst_0
            goto 5
      StackMap locals:
      StackMap stack:
         4: iconst_1
      StackMap locals:
      StackMap stack: int
         5: ireturn
        end local 3 // org.w3c.dom.Attr attr
        end local 2 // boolean currentTrim
        end local 1 // org.w3c.dom.Element element
        end local 0 // org.apache.commons.configuration.XMLConfiguration this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    6     0         this  Lorg/apache/commons/configuration/XMLConfiguration;
            0    6     1      element  Lorg/w3c/dom/Element;
            0    6     2  currentTrim  Z
            1    6     3         attr  Lorg/w3c/dom/Attr;
    MethodParameters:
             Name  Flags
      element      
      currentTrim  

  protected javax.xml.parsers.DocumentBuilder createDocumentBuilder();
    descriptor: ()Ljavax/xml/parsers/DocumentBuilder;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // org.apache.commons.configuration.XMLConfiguration this
         0: .line 849
            aload 0 /* this */
            invokevirtual org.apache.commons.configuration.XMLConfiguration.getDocumentBuilder:()Ljavax/xml/parsers/DocumentBuilder;
            ifnull 2
         1: .line 851
            aload 0 /* this */
            invokevirtual org.apache.commons.configuration.XMLConfiguration.getDocumentBuilder:()Ljavax/xml/parsers/DocumentBuilder;
            areturn
         2: .line 856
      StackMap locals:
      StackMap stack:
            invokestatic javax.xml.parsers.DocumentBuilderFactory.newInstance:()Ljavax/xml/parsers/DocumentBuilderFactory;
         3: .line 855
            astore 1 /* factory */
        start local 1 // javax.xml.parsers.DocumentBuilderFactory factory
         4: .line 857
            aload 0 /* this */
            invokevirtual org.apache.commons.configuration.XMLConfiguration.isValidating:()Z
            ifeq 9
         5: .line 859
            aload 1 /* factory */
            iconst_1
            invokevirtual javax.xml.parsers.DocumentBuilderFactory.setValidating:(Z)V
         6: .line 860
            aload 0 /* this */
            invokevirtual org.apache.commons.configuration.XMLConfiguration.isSchemaValidation:()Z
            ifeq 9
         7: .line 862
            aload 1 /* factory */
            iconst_1
            invokevirtual javax.xml.parsers.DocumentBuilderFactory.setNamespaceAware:(Z)V
         8: .line 863
            aload 1 /* factory */
            ldc "http://java.sun.com/xml/jaxp/properties/schemaLanguage"
            ldc "http://www.w3.org/2001/XMLSchema"
            invokevirtual javax.xml.parsers.DocumentBuilderFactory.setAttribute:(Ljava/lang/String;Ljava/lang/Object;)V
         9: .line 867
      StackMap locals: javax.xml.parsers.DocumentBuilderFactory
      StackMap stack:
            aload 1 /* factory */
            invokevirtual javax.xml.parsers.DocumentBuilderFactory.newDocumentBuilder:()Ljavax/xml/parsers/DocumentBuilder;
            astore 2 /* result */
        start local 2 // javax.xml.parsers.DocumentBuilder result
        10: .line 868
            aload 2 /* result */
            aload 0 /* this */
            getfield org.apache.commons.configuration.XMLConfiguration.entityResolver:Lorg/xml/sax/EntityResolver;
            invokevirtual javax.xml.parsers.DocumentBuilder.setEntityResolver:(Lorg/xml/sax/EntityResolver;)V
        11: .line 870
            aload 0 /* this */
            invokevirtual org.apache.commons.configuration.XMLConfiguration.isValidating:()Z
            ifeq 13
        12: .line 873
            aload 2 /* result */
            new org.apache.commons.configuration.XMLConfiguration$1
            dup
            aload 0 /* this */
            invokespecial org.apache.commons.configuration.XMLConfiguration$1.<init>:(Lorg/apache/commons/configuration/XMLConfiguration;)V
            invokevirtual javax.xml.parsers.DocumentBuilder.setErrorHandler:(Lorg/xml/sax/ErrorHandler;)V
        13: .line 882
      StackMap locals: javax.xml.parsers.DocumentBuilder
      StackMap stack:
            aload 2 /* result */
            areturn
        end local 2 // javax.xml.parsers.DocumentBuilder result
        end local 1 // javax.xml.parsers.DocumentBuilderFactory factory
        end local 0 // org.apache.commons.configuration.XMLConfiguration this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   14     0     this  Lorg/apache/commons/configuration/XMLConfiguration;
            4   14     1  factory  Ljavax/xml/parsers/DocumentBuilderFactory;
           10   14     2   result  Ljavax/xml/parsers/DocumentBuilder;
    Exceptions:
      throws javax.xml.parsers.ParserConfigurationException

  protected org.w3c.dom.Document createDocument();
    descriptor: ()Lorg/w3c/dom/Document;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=4, args_size=1
        start local 0 // org.apache.commons.configuration.XMLConfiguration this
         0: .line 896
            aload 0 /* this */
            getfield org.apache.commons.configuration.XMLConfiguration.document:Lorg/w3c/dom/Document;
            ifnonnull 6
         1: .line 898
            invokestatic javax.xml.parsers.DocumentBuilderFactory.newInstance:()Ljavax/xml/parsers/DocumentBuilderFactory;
            invokevirtual javax.xml.parsers.DocumentBuilderFactory.newDocumentBuilder:()Ljavax/xml/parsers/DocumentBuilder;
            astore 1 /* builder */
        start local 1 // javax.xml.parsers.DocumentBuilder builder
         2: .line 899
            aload 1 /* builder */
            invokevirtual javax.xml.parsers.DocumentBuilder.newDocument:()Lorg/w3c/dom/Document;
            astore 2 /* newDocument */
        start local 2 // org.w3c.dom.Document newDocument
         3: .line 900
            aload 2 /* newDocument */
            aload 0 /* this */
            invokevirtual org.apache.commons.configuration.XMLConfiguration.getRootElementName:()Ljava/lang/String;
            invokeinterface org.w3c.dom.Document.createElement:(Ljava/lang/String;)Lorg/w3c/dom/Element;
            astore 3 /* rootElem */
        start local 3 // org.w3c.dom.Element rootElem
         4: .line 901
            aload 2 /* newDocument */
            aload 3 /* rootElem */
            invokeinterface org.w3c.dom.Document.appendChild:(Lorg/w3c/dom/Node;)Lorg/w3c/dom/Node;
            pop
         5: .line 902
            aload 0 /* this */
            aload 2 /* newDocument */
            putfield org.apache.commons.configuration.XMLConfiguration.document:Lorg/w3c/dom/Document;
        end local 3 // org.w3c.dom.Element rootElem
        end local 2 // org.w3c.dom.Document newDocument
        end local 1 // javax.xml.parsers.DocumentBuilder builder
         6: .line 905
      StackMap locals:
      StackMap stack:
            new org.apache.commons.configuration.XMLConfiguration$XMLBuilderVisitor
            dup
            aload 0 /* this */
            getfield org.apache.commons.configuration.XMLConfiguration.document:Lorg/w3c/dom/Document;
         7: .line 906
            aload 0 /* this */
            invokevirtual org.apache.commons.configuration.XMLConfiguration.isDelimiterParsingDisabled:()Z
            ifeq 8
            iconst_0
            goto 9
      StackMap locals: org.apache.commons.configuration.XMLConfiguration
      StackMap stack: new 6 new 6 org.w3c.dom.Document
         8: aload 0 /* this */
            invokevirtual org.apache.commons.configuration.XMLConfiguration.getListDelimiter:()C
         9: .line 907
      StackMap locals: org.apache.commons.configuration.XMLConfiguration
      StackMap stack: new 6 new 6 org.w3c.dom.Document int
            aload 0 /* this */
            invokevirtual org.apache.commons.configuration.XMLConfiguration.isAttributeSplittingDisabled:()Z
        10: .line 905
            invokespecial org.apache.commons.configuration.XMLConfiguration$XMLBuilderVisitor.<init>:(Lorg/w3c/dom/Document;CZ)V
            astore 1 /* builder */
        start local 1 // org.apache.commons.configuration.XMLConfiguration$XMLBuilderVisitor builder
        11: .line 908
            aload 1 /* builder */
            aload 0 /* this */
            invokevirtual org.apache.commons.configuration.XMLConfiguration.getRoot:()Lorg/apache/commons/configuration/HierarchicalConfiguration$Node;
            invokevirtual org.apache.commons.configuration.XMLConfiguration$XMLBuilderVisitor.processDocument:(Lorg/apache/commons/configuration/HierarchicalConfiguration$Node;)V
        12: .line 909
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.configuration.XMLConfiguration.document:Lorg/w3c/dom/Document;
            aload 0 /* this */
            invokevirtual org.apache.commons.configuration.XMLConfiguration.getRootNode:()Lorg/apache/commons/configuration/tree/ConfigurationNode;
            invokeinterface org.apache.commons.configuration.tree.ConfigurationNode.getValue:()Ljava/lang/Object;
            invokevirtual org.apache.commons.configuration.XMLConfiguration.initRootElementText:(Lorg/w3c/dom/Document;Ljava/lang/Object;)V
        13: .line 910
            aload 0 /* this */
            getfield org.apache.commons.configuration.XMLConfiguration.document:Lorg/w3c/dom/Document;
        14: areturn
        end local 1 // org.apache.commons.configuration.XMLConfiguration$XMLBuilderVisitor builder
        15: .line 912
      StackMap locals:
      StackMap stack: org.w3c.dom.DOMException
            astore 1 /* domEx */
        start local 1 // org.w3c.dom.DOMException domEx
        16: .line 914
            new org.apache.commons.configuration.ConfigurationException
            dup
            aload 1 /* domEx */
            invokespecial org.apache.commons.configuration.ConfigurationException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 1 // org.w3c.dom.DOMException domEx
        17: .line 916
      StackMap locals:
      StackMap stack: javax.xml.parsers.ParserConfigurationException
            astore 1 /* pex */
        start local 1 // javax.xml.parsers.ParserConfigurationException pex
        18: .line 918
            new org.apache.commons.configuration.ConfigurationException
            dup
            aload 1 /* pex */
            invokespecial org.apache.commons.configuration.ConfigurationException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 1 // javax.xml.parsers.ParserConfigurationException pex
        end local 0 // org.apache.commons.configuration.XMLConfiguration this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   19     0         this  Lorg/apache/commons/configuration/XMLConfiguration;
            2    6     1      builder  Ljavax/xml/parsers/DocumentBuilder;
            3    6     2  newDocument  Lorg/w3c/dom/Document;
            4    6     3     rootElem  Lorg/w3c/dom/Element;
           11   15     1      builder  Lorg/apache/commons/configuration/XMLConfiguration$XMLBuilderVisitor;
           16   17     1        domEx  Lorg/w3c/dom/DOMException;
           18   19     1          pex  Ljavax/xml/parsers/ParserConfigurationException;
      Exception table:
        from    to  target  type
           0    14      15  Class org.w3c.dom.DOMException
           0    14      17  Class javax.xml.parsers.ParserConfigurationException
    Exceptions:
      throws org.apache.commons.configuration.ConfigurationException

  private void initRootElementText(org.w3c.dom.Document, java.lang.Object);
    descriptor: (Lorg/w3c/dom/Document;Ljava/lang/Object;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=7, args_size=3
        start local 0 // org.apache.commons.configuration.XMLConfiguration this
        start local 1 // org.w3c.dom.Document doc
        start local 2 // java.lang.Object value
         0: .line 930
            aload 1 /* doc */
            invokeinterface org.w3c.dom.Document.getDocumentElement:()Lorg/w3c/dom/Element;
            astore 3 /* elem */
        start local 3 // org.w3c.dom.Element elem
         1: .line 931
            aload 3 /* elem */
            invokeinterface org.w3c.dom.Element.getChildNodes:()Lorg/w3c/dom/NodeList;
            astore 4 /* children */
        start local 4 // org.w3c.dom.NodeList children
         2: .line 934
            iconst_0
            istore 5 /* i */
        start local 5 // int i
         3: goto 8
         4: .line 936
      StackMap locals: org.w3c.dom.Element org.w3c.dom.NodeList int
      StackMap stack:
            aload 4 /* children */
            iload 5 /* i */
            invokeinterface org.w3c.dom.NodeList.item:(I)Lorg/w3c/dom/Node;
            astore 6 /* nd */
        start local 6 // org.w3c.dom.Node nd
         5: .line 937
            aload 6 /* nd */
            invokeinterface org.w3c.dom.Node.getNodeType:()S
            iconst_3
            if_icmpne 7
         6: .line 939
            aload 3 /* elem */
            aload 6 /* nd */
            invokeinterface org.w3c.dom.Element.removeChild:(Lorg/w3c/dom/Node;)Lorg/w3c/dom/Node;
            pop
        end local 6 // org.w3c.dom.Node nd
         7: .line 934
      StackMap locals:
      StackMap stack:
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
         8: iload 5 /* i */
            aload 4 /* children */
            invokeinterface org.w3c.dom.NodeList.getLength:()I
            if_icmplt 4
        end local 5 // int i
         9: .line 943
            aload 2 /* value */
            ifnull 11
        10: .line 946
            aload 3 /* elem */
            aload 1 /* doc */
            aload 2 /* value */
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokeinterface org.w3c.dom.Document.createTextNode:(Ljava/lang/String;)Lorg/w3c/dom/Text;
            invokeinterface org.w3c.dom.Element.appendChild:(Lorg/w3c/dom/Node;)Lorg/w3c/dom/Node;
            pop
        11: .line 948
      StackMap locals:
      StackMap stack:
            return
        end local 4 // org.w3c.dom.NodeList children
        end local 3 // org.w3c.dom.Element elem
        end local 2 // java.lang.Object value
        end local 1 // org.w3c.dom.Document doc
        end local 0 // org.apache.commons.configuration.XMLConfiguration this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   12     0      this  Lorg/apache/commons/configuration/XMLConfiguration;
            0   12     1       doc  Lorg/w3c/dom/Document;
            0   12     2     value  Ljava/lang/Object;
            1   12     3      elem  Lorg/w3c/dom/Element;
            2   12     4  children  Lorg/w3c/dom/NodeList;
            3    9     5         i  I
            5    7     6        nd  Lorg/w3c/dom/Node;
    MethodParameters:
       Name  Flags
      doc    
      value  

  protected org.apache.commons.configuration.HierarchicalConfiguration$Node createNode(java.lang.String);
    descriptor: (Ljava/lang/String;)Lorg/apache/commons/configuration/HierarchicalConfiguration$Node;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.apache.commons.configuration.XMLConfiguration this
        start local 1 // java.lang.String name
         0: .line 960
            new org.apache.commons.configuration.XMLConfiguration$XMLNode
            dup
            aload 0 /* this */
            aload 1 /* name */
            aconst_null
            invokespecial org.apache.commons.configuration.XMLConfiguration$XMLNode.<init>:(Lorg/apache/commons/configuration/XMLConfiguration;Ljava/lang/String;Lorg/w3c/dom/Element;)V
            areturn
        end local 1 // java.lang.String name
        end local 0 // org.apache.commons.configuration.XMLConfiguration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/configuration/XMLConfiguration;
            0    1     1  name  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      name  

  public void load(java.io.InputStream);
    descriptor: (Ljava/io/InputStream;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.apache.commons.configuration.XMLConfiguration this
        start local 1 // java.io.InputStream in
         0: .line 972
            aload 0 /* this */
            new org.xml.sax.InputSource
            dup
            aload 1 /* in */
            invokespecial org.xml.sax.InputSource.<init>:(Ljava/io/InputStream;)V
            invokevirtual org.apache.commons.configuration.XMLConfiguration.load:(Lorg/xml/sax/InputSource;)V
         1: .line 973
            return
        end local 1 // java.io.InputStream in
        end local 0 // org.apache.commons.configuration.XMLConfiguration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/configuration/XMLConfiguration;
            0    2     1    in  Ljava/io/InputStream;
    Exceptions:
      throws org.apache.commons.configuration.ConfigurationException
    MethodParameters:
      Name  Flags
      in    

  public void load(java.io.Reader);
    descriptor: (Ljava/io/Reader;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.apache.commons.configuration.XMLConfiguration this
        start local 1 // java.io.Reader in
         0: .line 987
            aload 0 /* this */
            new org.xml.sax.InputSource
            dup
            aload 1 /* in */
            invokespecial org.xml.sax.InputSource.<init>:(Ljava/io/Reader;)V
            invokevirtual org.apache.commons.configuration.XMLConfiguration.load:(Lorg/xml/sax/InputSource;)V
         1: .line 988
            return
        end local 1 // java.io.Reader in
        end local 0 // org.apache.commons.configuration.XMLConfiguration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/configuration/XMLConfiguration;
            0    2     1    in  Ljava/io/Reader;
    Exceptions:
      throws org.apache.commons.configuration.ConfigurationException
    MethodParameters:
      Name  Flags
      in    

  private void load(org.xml.sax.InputSource);
    descriptor: (Lorg/xml/sax/InputSource;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=6, args_size=2
        start local 0 // org.apache.commons.configuration.XMLConfiguration this
        start local 1 // org.xml.sax.InputSource source
         0: .line 999
            aload 0 /* this */
            invokevirtual org.apache.commons.configuration.XMLConfiguration.getDelegate:()Lorg/apache/commons/configuration/AbstractHierarchicalFileConfiguration$FileConfigurationDelegate;
            invokevirtual org.apache.commons.configuration.AbstractHierarchicalFileConfiguration$FileConfigurationDelegate.getURL:()Ljava/net/URL;
            astore 2 /* sourceURL */
        start local 2 // java.net.URL sourceURL
         1: .line 1000
            aload 2 /* sourceURL */
            ifnull 3
         2: .line 1002
            aload 1 /* source */
            aload 2 /* sourceURL */
            invokevirtual java.net.URL.toString:()Ljava/lang/String;
            invokevirtual org.xml.sax.InputSource.setSystemId:(Ljava/lang/String;)V
         3: .line 1005
      StackMap locals: java.net.URL
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.apache.commons.configuration.XMLConfiguration.createDocumentBuilder:()Ljavax/xml/parsers/DocumentBuilder;
            astore 3 /* builder */
        start local 3 // javax.xml.parsers.DocumentBuilder builder
         4: .line 1006
            aload 3 /* builder */
            aload 1 /* source */
            invokevirtual javax.xml.parsers.DocumentBuilder.parse:(Lorg/xml/sax/InputSource;)Lorg/w3c/dom/Document;
            astore 4 /* newDocument */
        start local 4 // org.w3c.dom.Document newDocument
         5: .line 1007
            aload 0 /* this */
            getfield org.apache.commons.configuration.XMLConfiguration.document:Lorg/w3c/dom/Document;
            astore 5 /* oldDocument */
        start local 5 // org.w3c.dom.Document oldDocument
         6: .line 1008
            aload 0 /* this */
            aconst_null
            putfield org.apache.commons.configuration.XMLConfiguration.document:Lorg/w3c/dom/Document;
         7: .line 1009
            aload 0 /* this */
            aload 4 /* newDocument */
            aload 5 /* oldDocument */
            ifnonnull 8
            iconst_1
            goto 9
      StackMap locals: org.apache.commons.configuration.XMLConfiguration org.xml.sax.InputSource java.net.URL javax.xml.parsers.DocumentBuilder org.w3c.dom.Document org.w3c.dom.Document
      StackMap stack: org.apache.commons.configuration.XMLConfiguration org.w3c.dom.Document
         8: iconst_0
      StackMap locals: org.apache.commons.configuration.XMLConfiguration org.xml.sax.InputSource java.net.URL javax.xml.parsers.DocumentBuilder org.w3c.dom.Document org.w3c.dom.Document
      StackMap stack: org.apache.commons.configuration.XMLConfiguration org.w3c.dom.Document int
         9: invokevirtual org.apache.commons.configuration.XMLConfiguration.initProperties:(Lorg/w3c/dom/Document;Z)V
        10: .line 1010
            aload 0 /* this */
            aload 5 /* oldDocument */
            ifnonnull 11
            aload 4 /* newDocument */
            goto 12
      StackMap locals:
      StackMap stack: org.apache.commons.configuration.XMLConfiguration
        11: aload 5 /* oldDocument */
      StackMap locals: org.apache.commons.configuration.XMLConfiguration org.xml.sax.InputSource java.net.URL javax.xml.parsers.DocumentBuilder org.w3c.dom.Document org.w3c.dom.Document
      StackMap stack: org.apache.commons.configuration.XMLConfiguration org.w3c.dom.Document
        12: putfield org.apache.commons.configuration.XMLConfiguration.document:Lorg/w3c/dom/Document;
        end local 5 // org.w3c.dom.Document oldDocument
        end local 4 // org.w3c.dom.Document newDocument
        end local 3 // javax.xml.parsers.DocumentBuilder builder
        end local 2 // java.net.URL sourceURL
        13: .line 1011
            goto 19
        14: .line 1012
      StackMap locals: org.apache.commons.configuration.XMLConfiguration org.xml.sax.InputSource
      StackMap stack: org.xml.sax.SAXParseException
            astore 2 /* spe */
        start local 2 // org.xml.sax.SAXParseException spe
        15: .line 1014
            new org.apache.commons.configuration.ConfigurationException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Error parsing "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* source */
            invokevirtual org.xml.sax.InputSource.getSystemId:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aload 2 /* spe */
            invokespecial org.apache.commons.configuration.ConfigurationException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 2 // org.xml.sax.SAXParseException spe
        16: .line 1016
      StackMap locals:
      StackMap stack: java.lang.Exception
            astore 2 /* e */
        start local 2 // java.lang.Exception e
        17: .line 1018
            aload 0 /* this */
            invokevirtual org.apache.commons.configuration.XMLConfiguration.getLogger:()Lorg/apache/commons/logging/Log;
            ldc "Unable to load the configuraton"
            aload 2 /* e */
            invokeinterface org.apache.commons.logging.Log.debug:(Ljava/lang/Object;Ljava/lang/Throwable;)V
        18: .line 1019
            new org.apache.commons.configuration.ConfigurationException
            dup
            ldc "Unable to load the configuration"
            aload 2 /* e */
            invokespecial org.apache.commons.configuration.ConfigurationException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 2 // java.lang.Exception e
        19: .line 1021
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.xml.sax.InputSource source
        end local 0 // org.apache.commons.configuration.XMLConfiguration this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   20     0         this  Lorg/apache/commons/configuration/XMLConfiguration;
            0   20     1       source  Lorg/xml/sax/InputSource;
            1   13     2    sourceURL  Ljava/net/URL;
            4   13     3      builder  Ljavax/xml/parsers/DocumentBuilder;
            5   13     4  newDocument  Lorg/w3c/dom/Document;
            6   13     5  oldDocument  Lorg/w3c/dom/Document;
           15   16     2          spe  Lorg/xml/sax/SAXParseException;
           17   19     2            e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0    13      14  Class org.xml.sax.SAXParseException
           0    13      16  Class java.lang.Exception
    Exceptions:
      throws org.apache.commons.configuration.ConfigurationException
    MethodParameters:
        Name  Flags
      source  

  public void save(java.io.Writer);
    descriptor: (Ljava/io/Writer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // org.apache.commons.configuration.XMLConfiguration this
        start local 1 // java.io.Writer writer
         0: .line 1033
            aload 0 /* this */
            invokevirtual org.apache.commons.configuration.XMLConfiguration.createTransformer:()Ljavax/xml/transform/Transformer;
            astore 2 /* transformer */
        start local 2 // javax.xml.transform.Transformer transformer
         1: .line 1034
            new javax.xml.transform.dom.DOMSource
            dup
            aload 0 /* this */
            invokevirtual org.apache.commons.configuration.XMLConfiguration.createDocument:()Lorg/w3c/dom/Document;
            invokespecial javax.xml.transform.dom.DOMSource.<init>:(Lorg/w3c/dom/Node;)V
            astore 3 /* source */
        start local 3 // javax.xml.transform.Source source
         2: .line 1035
            new javax.xml.transform.stream.StreamResult
            dup
            aload 1 /* writer */
            invokespecial javax.xml.transform.stream.StreamResult.<init>:(Ljava/io/Writer;)V
            astore 4 /* result */
        start local 4 // javax.xml.transform.Result result
         3: .line 1036
            aload 2 /* transformer */
            aload 3 /* source */
            aload 4 /* result */
            invokevirtual javax.xml.transform.Transformer.transform:(Ljavax/xml/transform/Source;Ljavax/xml/transform/Result;)V
        end local 4 // javax.xml.transform.Result result
        end local 3 // javax.xml.transform.Source source
        end local 2 // javax.xml.transform.Transformer transformer
         4: .line 1037
            goto 9
         5: .line 1038
      StackMap locals:
      StackMap stack: javax.xml.transform.TransformerException
            astore 2 /* e */
        start local 2 // javax.xml.transform.TransformerException e
         6: .line 1040
            new org.apache.commons.configuration.ConfigurationException
            dup
            ldc "Unable to save the configuration"
            aload 2 /* e */
            invokespecial org.apache.commons.configuration.ConfigurationException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 2 // javax.xml.transform.TransformerException e
         7: .line 1042
      StackMap locals:
      StackMap stack: javax.xml.transform.TransformerFactoryConfigurationError
            astore 2 /* e */
        start local 2 // javax.xml.transform.TransformerFactoryConfigurationError e
         8: .line 1044
            new org.apache.commons.configuration.ConfigurationException
            dup
            ldc "Unable to save the configuration"
            aload 2 /* e */
            invokespecial org.apache.commons.configuration.ConfigurationException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 2 // javax.xml.transform.TransformerFactoryConfigurationError e
         9: .line 1046
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.io.Writer writer
        end local 0 // org.apache.commons.configuration.XMLConfiguration this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   10     0         this  Lorg/apache/commons/configuration/XMLConfiguration;
            0   10     1       writer  Ljava/io/Writer;
            1    4     2  transformer  Ljavax/xml/transform/Transformer;
            2    4     3       source  Ljavax/xml/transform/Source;
            3    4     4       result  Ljavax/xml/transform/Result;
            6    7     2            e  Ljavax/xml/transform/TransformerException;
            8    9     2            e  Ljavax/xml/transform/TransformerFactoryConfigurationError;
      Exception table:
        from    to  target  type
           0     4       5  Class javax.xml.transform.TransformerException
           0     4       7  Class javax.xml.transform.TransformerFactoryConfigurationError
    Exceptions:
      throws org.apache.commons.configuration.ConfigurationException
    MethodParameters:
        Name  Flags
      writer  

  public void validate();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=1
        start local 0 // org.apache.commons.configuration.XMLConfiguration this
         0: .line 1056
            aload 0 /* this */
            invokevirtual org.apache.commons.configuration.XMLConfiguration.createTransformer:()Ljavax/xml/transform/Transformer;
            astore 1 /* transformer */
        start local 1 // javax.xml.transform.Transformer transformer
         1: .line 1057
            new javax.xml.transform.dom.DOMSource
            dup
            aload 0 /* this */
            invokevirtual org.apache.commons.configuration.XMLConfiguration.createDocument:()Lorg/w3c/dom/Document;
            invokespecial javax.xml.transform.dom.DOMSource.<init>:(Lorg/w3c/dom/Node;)V
            astore 2 /* source */
        start local 2 // javax.xml.transform.Source source
         2: .line 1058
            new java.io.StringWriter
            dup
            invokespecial java.io.StringWriter.<init>:()V
            astore 3 /* writer */
        start local 3 // java.io.StringWriter writer
         3: .line 1059
            new javax.xml.transform.stream.StreamResult
            dup
            aload 3 /* writer */
            invokespecial javax.xml.transform.stream.StreamResult.<init>:(Ljava/io/Writer;)V
            astore 4 /* result */
        start local 4 // javax.xml.transform.Result result
         4: .line 1060
            aload 1 /* transformer */
            aload 2 /* source */
            aload 4 /* result */
            invokevirtual javax.xml.transform.Transformer.transform:(Ljavax/xml/transform/Source;Ljavax/xml/transform/Result;)V
         5: .line 1061
            new java.io.StringReader
            dup
            aload 3 /* writer */
            invokevirtual java.io.StringWriter.getBuffer:()Ljava/lang/StringBuffer;
            invokevirtual java.lang.StringBuffer.toString:()Ljava/lang/String;
            invokespecial java.io.StringReader.<init>:(Ljava/lang/String;)V
            astore 5 /* reader */
        start local 5 // java.io.Reader reader
         6: .line 1062
            aload 0 /* this */
            invokevirtual org.apache.commons.configuration.XMLConfiguration.createDocumentBuilder:()Ljavax/xml/parsers/DocumentBuilder;
            astore 6 /* builder */
        start local 6 // javax.xml.parsers.DocumentBuilder builder
         7: .line 1063
            aload 6 /* builder */
            new org.xml.sax.InputSource
            dup
            aload 5 /* reader */
            invokespecial org.xml.sax.InputSource.<init>:(Ljava/io/Reader;)V
            invokevirtual javax.xml.parsers.DocumentBuilder.parse:(Lorg/xml/sax/InputSource;)Lorg/w3c/dom/Document;
            pop
        end local 6 // javax.xml.parsers.DocumentBuilder builder
        end local 5 // java.io.Reader reader
        end local 4 // javax.xml.transform.Result result
        end local 3 // java.io.StringWriter writer
        end local 2 // javax.xml.transform.Source source
        end local 1 // javax.xml.transform.Transformer transformer
         8: .line 1064
            goto 17
         9: .line 1065
      StackMap locals:
      StackMap stack: org.xml.sax.SAXException
            astore 1 /* e */
        start local 1 // org.xml.sax.SAXException e
        10: .line 1067
            new org.apache.commons.configuration.ConfigurationException
            dup
            ldc "Validation failed"
            aload 1 /* e */
            invokespecial org.apache.commons.configuration.ConfigurationException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 1 // org.xml.sax.SAXException e
        11: .line 1069
      StackMap locals:
      StackMap stack: java.io.IOException
            astore 1 /* e */
        start local 1 // java.io.IOException e
        12: .line 1071
            new org.apache.commons.configuration.ConfigurationException
            dup
            ldc "Validation failed"
            aload 1 /* e */
            invokespecial org.apache.commons.configuration.ConfigurationException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 1 // java.io.IOException e
        13: .line 1073
      StackMap locals:
      StackMap stack: javax.xml.transform.TransformerException
            astore 1 /* e */
        start local 1 // javax.xml.transform.TransformerException e
        14: .line 1075
            new org.apache.commons.configuration.ConfigurationException
            dup
            ldc "Validation failed"
            aload 1 /* e */
            invokespecial org.apache.commons.configuration.ConfigurationException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 1 // javax.xml.transform.TransformerException e
        15: .line 1077
      StackMap locals:
      StackMap stack: javax.xml.parsers.ParserConfigurationException
            astore 1 /* pce */
        start local 1 // javax.xml.parsers.ParserConfigurationException pce
        16: .line 1079
            new org.apache.commons.configuration.ConfigurationException
            dup
            ldc "Validation failed"
            aload 1 /* pce */
            invokespecial org.apache.commons.configuration.ConfigurationException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 1 // javax.xml.parsers.ParserConfigurationException pce
        17: .line 1081
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.apache.commons.configuration.XMLConfiguration this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   18     0         this  Lorg/apache/commons/configuration/XMLConfiguration;
            1    8     1  transformer  Ljavax/xml/transform/Transformer;
            2    8     2       source  Ljavax/xml/transform/Source;
            3    8     3       writer  Ljava/io/StringWriter;
            4    8     4       result  Ljavax/xml/transform/Result;
            6    8     5       reader  Ljava/io/Reader;
            7    8     6      builder  Ljavax/xml/parsers/DocumentBuilder;
           10   11     1            e  Lorg/xml/sax/SAXException;
           12   13     1            e  Ljava/io/IOException;
           14   15     1            e  Ljavax/xml/transform/TransformerException;
           16   17     1          pce  Ljavax/xml/parsers/ParserConfigurationException;
      Exception table:
        from    to  target  type
           0     8       9  Class org.xml.sax.SAXException
           0     8      11  Class java.io.IOException
           0     8      13  Class javax.xml.transform.TransformerException
           0     8      15  Class javax.xml.parsers.ParserConfigurationException
    Exceptions:
      throws org.apache.commons.configuration.ConfigurationException

  protected javax.xml.transform.Transformer createTransformer();
    descriptor: ()Ljavax/xml/transform/Transformer;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.apache.commons.configuration.XMLConfiguration this
         0: .line 1095
            invokestatic javax.xml.transform.TransformerFactory.newInstance:()Ljavax/xml/transform/TransformerFactory;
         1: .line 1096
            invokevirtual javax.xml.transform.TransformerFactory.newTransformer:()Ljavax/xml/transform/Transformer;
         2: .line 1095
            astore 1 /* transformer */
        start local 1 // javax.xml.transform.Transformer transformer
         3: .line 1098
            aload 1 /* transformer */
            ldc "indent"
            ldc "yes"
            invokevirtual javax.xml.transform.Transformer.setOutputProperty:(Ljava/lang/String;Ljava/lang/String;)V
         4: .line 1099
            aload 0 /* this */
            invokevirtual org.apache.commons.configuration.XMLConfiguration.getEncoding:()Ljava/lang/String;
            ifnull 6
         5: .line 1101
            aload 1 /* transformer */
            ldc "encoding"
            aload 0 /* this */
            invokevirtual org.apache.commons.configuration.XMLConfiguration.getEncoding:()Ljava/lang/String;
            invokevirtual javax.xml.transform.Transformer.setOutputProperty:(Ljava/lang/String;Ljava/lang/String;)V
         6: .line 1103
      StackMap locals: javax.xml.transform.Transformer
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.apache.commons.configuration.XMLConfiguration.getPublicID:()Ljava/lang/String;
            ifnull 10
         7: .line 1105
            aload 1 /* transformer */
            ldc "doctype-public"
         8: .line 1106
            aload 0 /* this */
            invokevirtual org.apache.commons.configuration.XMLConfiguration.getPublicID:()Ljava/lang/String;
         9: .line 1105
            invokevirtual javax.xml.transform.Transformer.setOutputProperty:(Ljava/lang/String;Ljava/lang/String;)V
        10: .line 1108
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.apache.commons.configuration.XMLConfiguration.getSystemID:()Ljava/lang/String;
            ifnull 14
        11: .line 1110
            aload 1 /* transformer */
            ldc "doctype-system"
        12: .line 1111
            aload 0 /* this */
            invokevirtual org.apache.commons.configuration.XMLConfiguration.getSystemID:()Ljava/lang/String;
        13: .line 1110
            invokevirtual javax.xml.transform.Transformer.setOutputProperty:(Ljava/lang/String;Ljava/lang/String;)V
        14: .line 1114
      StackMap locals:
      StackMap stack:
            aload 1 /* transformer */
            areturn
        end local 1 // javax.xml.transform.Transformer transformer
        end local 0 // org.apache.commons.configuration.XMLConfiguration this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   15     0         this  Lorg/apache/commons/configuration/XMLConfiguration;
            3   15     1  transformer  Ljavax/xml/transform/Transformer;
    Exceptions:
      throws javax.xml.transform.TransformerException

  public java.lang.Object clone();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.apache.commons.configuration.XMLConfiguration this
         0: .line 1128
            aload 0 /* this */
            invokespecial org.apache.commons.configuration.AbstractHierarchicalFileConfiguration.clone:()Ljava/lang/Object;
            checkcast org.apache.commons.configuration.XMLConfiguration
            astore 1 /* copy */
        start local 1 // org.apache.commons.configuration.XMLConfiguration copy
         1: .line 1131
            aload 1 /* copy */
            aconst_null
            putfield org.apache.commons.configuration.XMLConfiguration.document:Lorg/w3c/dom/Document;
         2: .line 1132
            aload 1 /* copy */
            aload 1 /* copy */
            invokevirtual org.apache.commons.configuration.XMLConfiguration.createDelegate:()Lorg/apache/commons/configuration/AbstractHierarchicalFileConfiguration$FileConfigurationDelegate;
            invokevirtual org.apache.commons.configuration.XMLConfiguration.setDelegate:(Lorg/apache/commons/configuration/AbstractHierarchicalFileConfiguration$FileConfigurationDelegate;)V
         3: .line 1134
            aload 1 /* copy */
            invokevirtual org.apache.commons.configuration.XMLConfiguration.getRootNode:()Lorg/apache/commons/configuration/tree/ConfigurationNode;
            invokestatic org.apache.commons.configuration.XMLConfiguration.clearReferences:(Lorg/apache/commons/configuration/tree/ConfigurationNode;)V
         4: .line 1136
            aload 1 /* copy */
            areturn
        end local 1 // org.apache.commons.configuration.XMLConfiguration copy
        end local 0 // org.apache.commons.configuration.XMLConfiguration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/apache/commons/configuration/XMLConfiguration;
            1    5     1  copy  Lorg/apache/commons/configuration/XMLConfiguration;

  protected org.apache.commons.configuration.AbstractHierarchicalFileConfiguration$FileConfigurationDelegate createDelegate();
    descriptor: ()Lorg/apache/commons/configuration/AbstractHierarchicalFileConfiguration$FileConfigurationDelegate;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.commons.configuration.XMLConfiguration this
         0: .line 1148
            new org.apache.commons.configuration.XMLConfiguration$XMLFileConfigurationDelegate
            dup
            aload 0 /* this */
            invokespecial org.apache.commons.configuration.XMLConfiguration$XMLFileConfigurationDelegate.<init>:(Lorg/apache/commons/configuration/XMLConfiguration;)V
            areturn
        end local 0 // org.apache.commons.configuration.XMLConfiguration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/configuration/XMLConfiguration;

  public void addNodes(java.lang.String, java.util.Collection<? extends org.apache.commons.configuration.tree.ConfigurationNode>);
    descriptor: (Ljava/lang/String;Ljava/util/Collection;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=3
        start local 0 // org.apache.commons.configuration.XMLConfiguration this
        start local 1 // java.lang.String key
        start local 2 // java.util.Collection nodes
         0: .line 1163
            aload 2 /* nodes */
            ifnull 8
            aload 2 /* nodes */
            invokeinterface java.util.Collection.isEmpty:()Z
            ifne 8
         1: .line 1166
            new java.util.ArrayList
            dup
            aload 2 /* nodes */
            invokeinterface java.util.Collection.size:()I
            invokespecial java.util.ArrayList.<init>:(I)V
            astore 3 /* xmlNodes */
        start local 3 // java.util.Collection xmlNodes
         2: .line 1167
            aload 2 /* nodes */
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 5
            goto 5
      StackMap locals: org.apache.commons.configuration.XMLConfiguration java.lang.String java.util.Collection java.util.Collection top java.util.Iterator
      StackMap stack:
         3: aload 5
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.commons.configuration.tree.ConfigurationNode
            astore 4 /* node */
        start local 4 // org.apache.commons.configuration.tree.ConfigurationNode node
         4: .line 1169
            aload 3 /* xmlNodes */
            aload 0 /* this */
            aload 4 /* node */
            invokevirtual org.apache.commons.configuration.XMLConfiguration.convertToXMLNode:(Lorg/apache/commons/configuration/tree/ConfigurationNode;)Lorg/apache/commons/configuration/XMLConfiguration$XMLNode;
            invokeinterface java.util.Collection.add:(Ljava/lang/Object;)Z
            pop
        end local 4 // org.apache.commons.configuration.tree.ConfigurationNode node
         5: .line 1167
      StackMap locals:
      StackMap stack:
            aload 5
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         6: .line 1171
            aload 0 /* this */
            aload 1 /* key */
            aload 3 /* xmlNodes */
            invokespecial org.apache.commons.configuration.AbstractHierarchicalFileConfiguration.addNodes:(Ljava/lang/String;Ljava/util/Collection;)V
        end local 3 // java.util.Collection xmlNodes
         7: .line 1172
            goto 9
         8: .line 1175
      StackMap locals: org.apache.commons.configuration.XMLConfiguration java.lang.String java.util.Collection
      StackMap stack:
            aload 0 /* this */
            aload 1 /* key */
            aload 2 /* nodes */
            invokespecial org.apache.commons.configuration.AbstractHierarchicalFileConfiguration.addNodes:(Ljava/lang/String;Ljava/util/Collection;)V
         9: .line 1177
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.util.Collection nodes
        end local 1 // java.lang.String key
        end local 0 // org.apache.commons.configuration.XMLConfiguration this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   10     0      this  Lorg/apache/commons/configuration/XMLConfiguration;
            0   10     1       key  Ljava/lang/String;
            0   10     2     nodes  Ljava/util/Collection<+Lorg/apache/commons/configuration/tree/ConfigurationNode;>;
            2    7     3  xmlNodes  Ljava/util/Collection<Lorg/apache/commons/configuration/XMLConfiguration$XMLNode;>;
            4    5     4      node  Lorg/apache/commons/configuration/tree/ConfigurationNode;
    Signature: (Ljava/lang/String;Ljava/util/Collection<+Lorg/apache/commons/configuration/tree/ConfigurationNode;>;)V
    MethodParameters:
       Name  Flags
      key    
      nodes  

  private org.apache.commons.configuration.XMLConfiguration$XMLNode convertToXMLNode(org.apache.commons.configuration.tree.ConfigurationNode);
    descriptor: (Lorg/apache/commons/configuration/tree/ConfigurationNode;)Lorg/apache/commons/configuration/XMLConfiguration$XMLNode;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // org.apache.commons.configuration.XMLConfiguration this
        start local 1 // org.apache.commons.configuration.tree.ConfigurationNode node
         0: .line 1192
            aload 1 /* node */
            instanceof org.apache.commons.configuration.XMLConfiguration$XMLNode
            ifeq 2
         1: .line 1194
            aload 1 /* node */
            checkcast org.apache.commons.configuration.XMLConfiguration$XMLNode
            areturn
         2: .line 1197
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* node */
            invokeinterface org.apache.commons.configuration.tree.ConfigurationNode.getName:()Ljava/lang/String;
            invokevirtual org.apache.commons.configuration.XMLConfiguration.createNode:(Ljava/lang/String;)Lorg/apache/commons/configuration/HierarchicalConfiguration$Node;
            checkcast org.apache.commons.configuration.XMLConfiguration$XMLNode
            astore 2 /* nd */
        start local 2 // org.apache.commons.configuration.XMLConfiguration$XMLNode nd
         3: .line 1198
            aload 2 /* nd */
            aload 1 /* node */
            invokeinterface org.apache.commons.configuration.tree.ConfigurationNode.getValue:()Ljava/lang/Object;
            invokevirtual org.apache.commons.configuration.XMLConfiguration$XMLNode.setValue:(Ljava/lang/Object;)V
         4: .line 1199
            aload 2 /* nd */
            aload 1 /* node */
            invokeinterface org.apache.commons.configuration.tree.ConfigurationNode.isAttribute:()Z
            invokevirtual org.apache.commons.configuration.XMLConfiguration$XMLNode.setAttribute:(Z)V
         5: .line 1200
            aload 1 /* node */
            invokeinterface org.apache.commons.configuration.tree.ConfigurationNode.getChildren:()Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 4
            goto 8
      StackMap locals: org.apache.commons.configuration.XMLConfiguration org.apache.commons.configuration.tree.ConfigurationNode org.apache.commons.configuration.XMLConfiguration$XMLNode top java.util.Iterator
      StackMap stack:
         6: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.commons.configuration.tree.ConfigurationNode
            astore 3 /* child */
        start local 3 // org.apache.commons.configuration.tree.ConfigurationNode child
         7: .line 1202
            aload 2 /* nd */
            aload 0 /* this */
            aload 3 /* child */
            invokevirtual org.apache.commons.configuration.XMLConfiguration.convertToXMLNode:(Lorg/apache/commons/configuration/tree/ConfigurationNode;)Lorg/apache/commons/configuration/XMLConfiguration$XMLNode;
            invokevirtual org.apache.commons.configuration.XMLConfiguration$XMLNode.addChild:(Lorg/apache/commons/configuration/HierarchicalConfiguration$Node;)V
        end local 3 // org.apache.commons.configuration.tree.ConfigurationNode child
         8: .line 1200
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 6
         9: .line 1204
            aload 1 /* node */
            invokeinterface org.apache.commons.configuration.tree.ConfigurationNode.getAttributes:()Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 4
            goto 12
      StackMap locals:
      StackMap stack:
        10: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.commons.configuration.tree.ConfigurationNode
            astore 3 /* attr */
        start local 3 // org.apache.commons.configuration.tree.ConfigurationNode attr
        11: .line 1206
            aload 2 /* nd */
            aload 0 /* this */
            aload 3 /* attr */
            invokevirtual org.apache.commons.configuration.XMLConfiguration.convertToXMLNode:(Lorg/apache/commons/configuration/tree/ConfigurationNode;)Lorg/apache/commons/configuration/XMLConfiguration$XMLNode;
            invokevirtual org.apache.commons.configuration.XMLConfiguration$XMLNode.addAttribute:(Lorg/apache/commons/configuration/tree/ConfigurationNode;)V
        end local 3 // org.apache.commons.configuration.tree.ConfigurationNode attr
        12: .line 1204
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 10
        13: .line 1208
            aload 2 /* nd */
            areturn
        end local 2 // org.apache.commons.configuration.XMLConfiguration$XMLNode nd
        end local 1 // org.apache.commons.configuration.tree.ConfigurationNode node
        end local 0 // org.apache.commons.configuration.XMLConfiguration this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   14     0   this  Lorg/apache/commons/configuration/XMLConfiguration;
            0   14     1   node  Lorg/apache/commons/configuration/tree/ConfigurationNode;
            3   14     2     nd  Lorg/apache/commons/configuration/XMLConfiguration$XMLNode;
            7    8     3  child  Lorg/apache/commons/configuration/tree/ConfigurationNode;
           11   12     3   attr  Lorg/apache/commons/configuration/tree/ConfigurationNode;
    MethodParameters:
      Name  Flags
      node  

  public void registerEntityId(java.lang.String, java.net.URL);
    descriptor: (Ljava/lang/String;Ljava/net/URL;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.apache.commons.configuration.XMLConfiguration this
        start local 1 // java.lang.String publicId
        start local 2 // java.net.URL entityURL
         0: .line 1249
            aload 0 /* this */
            getfield org.apache.commons.configuration.XMLConfiguration.entityResolver:Lorg/xml/sax/EntityResolver;
            instanceof org.apache.commons.configuration.resolver.EntityRegistry
            ifeq 2
         1: .line 1251
            aload 0 /* this */
            getfield org.apache.commons.configuration.XMLConfiguration.entityResolver:Lorg/xml/sax/EntityResolver;
            checkcast org.apache.commons.configuration.resolver.EntityRegistry
            aload 1 /* publicId */
            aload 2 /* entityURL */
            invokeinterface org.apache.commons.configuration.resolver.EntityRegistry.registerEntityId:(Ljava/lang/String;Ljava/net/URL;)V
         2: .line 1253
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.net.URL entityURL
        end local 1 // java.lang.String publicId
        end local 0 // org.apache.commons.configuration.XMLConfiguration this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lorg/apache/commons/configuration/XMLConfiguration;
            0    3     1   publicId  Ljava/lang/String;
            0    3     2  entityURL  Ljava/net/URL;
    MethodParameters:
           Name  Flags
      publicId   
      entityURL  

  public org.xml.sax.InputSource resolveEntity(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)Lorg/xml/sax/InputSource;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.apache.commons.configuration.XMLConfiguration this
        start local 1 // java.lang.String publicId
        start local 2 // java.lang.String systemId
         0: .line 1274
            aload 0 /* this */
            getfield org.apache.commons.configuration.XMLConfiguration.entityResolver:Lorg/xml/sax/EntityResolver;
            aload 1 /* publicId */
            aload 2 /* systemId */
            invokeinterface org.xml.sax.EntityResolver.resolveEntity:(Ljava/lang/String;Ljava/lang/String;)Lorg/xml/sax/InputSource;
         1: areturn
         2: .line 1276
      StackMap locals:
      StackMap stack: java.io.IOException
            astore 3 /* e */
        start local 3 // java.io.IOException e
         3: .line 1278
            new org.xml.sax.SAXException
            dup
            aload 3 /* e */
            invokespecial org.xml.sax.SAXException.<init>:(Ljava/lang/Exception;)V
            athrow
        end local 3 // java.io.IOException e
        end local 2 // java.lang.String systemId
        end local 1 // java.lang.String publicId
        end local 0 // org.apache.commons.configuration.XMLConfiguration this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lorg/apache/commons/configuration/XMLConfiguration;
            0    4     1  publicId  Ljava/lang/String;
            0    4     2  systemId  Ljava/lang/String;
            3    4     3         e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.io.IOException
    Exceptions:
      throws org.xml.sax.SAXException
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
          Name  Flags
      publicId  
      systemId  

  public java.util.Map<java.lang.String, java.net.URL> getRegisteredEntities();
    descriptor: ()Ljava/util/Map;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.configuration.XMLConfiguration this
         0: .line 1290
            aload 0 /* this */
            getfield org.apache.commons.configuration.XMLConfiguration.entityResolver:Lorg/xml/sax/EntityResolver;
            instanceof org.apache.commons.configuration.resolver.EntityRegistry
            ifeq 2
         1: .line 1292
            aload 0 /* this */
            getfield org.apache.commons.configuration.XMLConfiguration.entityResolver:Lorg/xml/sax/EntityResolver;
            checkcast org.apache.commons.configuration.resolver.EntityRegistry
            invokeinterface org.apache.commons.configuration.resolver.EntityRegistry.getRegisteredEntities:()Ljava/util/Map;
            areturn
         2: .line 1294
      StackMap locals:
      StackMap stack:
            new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
            areturn
        end local 0 // org.apache.commons.configuration.XMLConfiguration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/configuration/XMLConfiguration;
    Signature: ()Ljava/util/Map<Ljava/lang/String;Ljava/net/URL;>;
}
SourceFile: "XMLConfiguration.java"
NestMembers:
  org.apache.commons.configuration.XMLConfiguration$1  org.apache.commons.configuration.XMLConfiguration$XMLBuilderVisitor  org.apache.commons.configuration.XMLConfiguration$XMLFileConfigurationDelegate  org.apache.commons.configuration.XMLConfiguration$XMLNode
InnerClasses:
  public abstract Entry = java.util.Map$Entry of java.util.Map
  protected FileConfigurationDelegate = org.apache.commons.configuration.AbstractHierarchicalFileConfiguration$FileConfigurationDelegate of org.apache.commons.configuration.AbstractHierarchicalFileConfiguration
  public Node = org.apache.commons.configuration.HierarchicalConfiguration$Node of org.apache.commons.configuration.HierarchicalConfiguration
  org.apache.commons.configuration.XMLConfiguration$1
  XMLBuilderVisitor = org.apache.commons.configuration.XMLConfiguration$XMLBuilderVisitor of org.apache.commons.configuration.XMLConfiguration
  private XMLFileConfigurationDelegate = org.apache.commons.configuration.XMLConfiguration$XMLFileConfigurationDelegate of org.apache.commons.configuration.XMLConfiguration
  XMLNode = org.apache.commons.configuration.XMLConfiguration$XMLNode of org.apache.commons.configuration.XMLConfiguration