public class org.apache.commons.configuration.SystemConfiguration extends org.apache.commons.configuration.MapConfiguration
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.commons.configuration.SystemConfiguration
  super_class: org.apache.commons.configuration.MapConfiguration
{
  private static org.apache.commons.logging.Log log;
    descriptor: Lorg/apache/commons/logging/Log;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 35
            ldc Lorg/apache/commons/configuration/SystemConfiguration;
            invokestatic org.apache.commons.logging.LogFactory.getLog:(Ljava/lang/Class;)Lorg/apache/commons/logging/Log;
            putstatic org.apache.commons.configuration.SystemConfiguration.log:Lorg/apache/commons/logging/Log;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.configuration.SystemConfiguration this
         0: .line 44
            aload 0 /* this */
            invokestatic java.lang.System.getProperties:()Ljava/util/Properties;
            invokespecial org.apache.commons.configuration.MapConfiguration.<init>:(Ljava/util/Properties;)V
         1: .line 45
            return
        end local 0 // org.apache.commons.configuration.SystemConfiguration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/configuration/SystemConfiguration;

  public static void setSystemProperties(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.lang.String fileName
         0: .line 55
            aconst_null
            aload 0 /* fileName */
            invokestatic org.apache.commons.configuration.SystemConfiguration.setSystemProperties:(Ljava/lang/String;Ljava/lang/String;)V
         1: .line 56
            return
        end local 0 // java.lang.String fileName
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0  fileName  Ljava/lang/String;
    Exceptions:
      throws java.lang.Exception
    MethodParameters:
          Name  Flags
      fileName  

  public static void setSystemProperties(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // java.lang.String basePath
        start local 1 // java.lang.String fileName
         0: .line 67
            aload 1 /* fileName */
            ldc ".xml"
            invokevirtual java.lang.String.endsWith:(Ljava/lang/String;)Z
            ifeq 2
         1: .line 68
            new org.apache.commons.configuration.XMLPropertiesConfiguration
            dup
            invokespecial org.apache.commons.configuration.XMLPropertiesConfiguration.<init>:()V
            goto 3
      StackMap locals:
      StackMap stack:
         2: new org.apache.commons.configuration.PropertiesConfiguration
            dup
            invokespecial org.apache.commons.configuration.PropertiesConfiguration.<init>:()V
         3: .line 67
      StackMap locals:
      StackMap stack: org.apache.commons.configuration.PropertiesConfiguration
            astore 2 /* config */
        start local 2 // org.apache.commons.configuration.PropertiesConfiguration config
         4: .line 69
            aload 0 /* basePath */
            ifnull 6
         5: .line 71
            aload 2 /* config */
            aload 0 /* basePath */
            invokevirtual org.apache.commons.configuration.PropertiesConfiguration.setBasePath:(Ljava/lang/String;)V
         6: .line 73
      StackMap locals: org.apache.commons.configuration.PropertiesConfiguration
      StackMap stack:
            aload 2 /* config */
            aload 1 /* fileName */
            invokevirtual org.apache.commons.configuration.PropertiesConfiguration.setFileName:(Ljava/lang/String;)V
         7: .line 74
            aload 2 /* config */
            invokevirtual org.apache.commons.configuration.PropertiesConfiguration.load:()V
         8: .line 75
            aload 2 /* config */
            invokestatic org.apache.commons.configuration.SystemConfiguration.setSystemProperties:(Lorg/apache/commons/configuration/PropertiesConfiguration;)V
         9: .line 76
            return
        end local 2 // org.apache.commons.configuration.PropertiesConfiguration config
        end local 1 // java.lang.String fileName
        end local 0 // java.lang.String basePath
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   10     0  basePath  Ljava/lang/String;
            0   10     1  fileName  Ljava/lang/String;
            4   10     2    config  Lorg/apache/commons/configuration/PropertiesConfiguration;
    Exceptions:
      throws java.lang.Exception
    MethodParameters:
          Name  Flags
      basePath  
      fileName  

  public static void setSystemProperties(org.apache.commons.configuration.PropertiesConfiguration);
    descriptor: (Lorg/apache/commons/configuration/PropertiesConfiguration;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // org.apache.commons.configuration.PropertiesConfiguration systemConfig
         0: .line 85
            aload 0 /* systemConfig */
            invokevirtual org.apache.commons.configuration.PropertiesConfiguration.getKeys:()Ljava/util/Iterator;
            astore 1 /* iter */
        start local 1 // java.util.Iterator iter
         1: .line 86
            goto 7
         2: .line 88
      StackMap locals: java.util.Iterator
      StackMap stack:
            aload 1 /* iter */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.String
            astore 2 /* key */
        start local 2 // java.lang.String key
         3: .line 89
            aload 0 /* systemConfig */
            aload 2 /* key */
            invokevirtual org.apache.commons.configuration.PropertiesConfiguration.getProperty:(Ljava/lang/String;)Ljava/lang/Object;
            checkcast java.lang.String
            astore 3 /* value */
        start local 3 // java.lang.String value
         4: .line 90
            getstatic org.apache.commons.configuration.SystemConfiguration.log:Lorg/apache/commons/logging/Log;
            invokeinterface org.apache.commons.logging.Log.isDebugEnabled:()Z
            ifeq 6
         5: .line 92
            getstatic org.apache.commons.configuration.SystemConfiguration.log:Lorg/apache/commons/logging/Log;
            new java.lang.StringBuilder
            dup
            ldc "Setting system property "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 2 /* key */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc " to "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 3 /* value */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokeinterface org.apache.commons.logging.Log.debug:(Ljava/lang/Object;)V
         6: .line 94
      StackMap locals: java.lang.String java.lang.String
      StackMap stack:
            aload 2 /* key */
            aload 3 /* value */
            invokestatic java.lang.System.setProperty:(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
            pop
        end local 3 // java.lang.String value
        end local 2 // java.lang.String key
         7: .line 86
      StackMap locals:
      StackMap stack:
            aload 1 /* iter */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         8: .line 96
            return
        end local 1 // java.util.Iterator iter
        end local 0 // org.apache.commons.configuration.PropertiesConfiguration systemConfig
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    9     0  systemConfig  Lorg/apache/commons/configuration/PropertiesConfiguration;
            1    9     1          iter  Ljava/util/Iterator<Ljava/lang/String;>;
            3    7     2           key  Ljava/lang/String;
            4    7     3         value  Ljava/lang/String;
    MethodParameters:
              Name  Flags
      systemConfig  
}
SourceFile: "SystemConfiguration.java"