public final class org.apache.commons.configuration.ConfigurationConverter
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: org.apache.commons.configuration.ConfigurationConverter
  super_class: java.lang.Object
{
  private void <init>();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.configuration.ConfigurationConverter this
         0: .line 41
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 44
            return
        end local 0 // org.apache.commons.configuration.ConfigurationConverter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/configuration/ConfigurationConverter;

  public static org.apache.commons.configuration.Configuration getConfiguration(org.apache.commons.collections.ExtendedProperties);
    descriptor: (Lorg/apache/commons/collections/ExtendedProperties;)Lorg/apache/commons/configuration/Configuration;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.ExtendedProperties eprops
         0: .line 54
            new org.apache.commons.configuration.MapConfiguration
            dup
            aload 0 /* eprops */
            invokespecial org.apache.commons.configuration.MapConfiguration.<init>:(Ljava/util/Map;)V
            areturn
        end local 0 // org.apache.commons.collections.ExtendedProperties eprops
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0  eprops  Lorg/apache/commons/collections/ExtendedProperties;
    MethodParameters:
        Name  Flags
      eprops  

  public static org.apache.commons.configuration.Configuration getConfiguration(java.util.Properties);
    descriptor: (Ljava/util/Properties;)Lorg/apache/commons/configuration/Configuration;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.util.Properties props
         0: .line 65
            new org.apache.commons.configuration.MapConfiguration
            dup
            aload 0 /* props */
            invokespecial org.apache.commons.configuration.MapConfiguration.<init>:(Ljava/util/Properties;)V
            areturn
        end local 0 // java.util.Properties props
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0  props  Ljava/util/Properties;
    MethodParameters:
       Name  Flags
      props  

  public static org.apache.commons.collections.ExtendedProperties getExtendedProperties(org.apache.commons.configuration.Configuration);
    descriptor: (Lorg/apache/commons/configuration/Configuration;)Lorg/apache/commons/collections/ExtendedProperties;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=5, args_size=1
        start local 0 // org.apache.commons.configuration.Configuration config
         0: .line 76
            new org.apache.commons.collections.ExtendedProperties
            dup
            invokespecial org.apache.commons.collections.ExtendedProperties.<init>:()V
            astore 1 /* props */
        start local 1 // org.apache.commons.collections.ExtendedProperties props
         1: .line 78
            aload 0 /* config */
            invokeinterface org.apache.commons.configuration.Configuration.getKeys:()Ljava/util/Iterator;
            astore 2 /* keys */
        start local 2 // java.util.Iterator keys
         2: goto 8
         3: .line 80
      StackMap locals: org.apache.commons.collections.ExtendedProperties java.util.Iterator
      StackMap stack:
            aload 2 /* keys */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.String
            astore 3 /* key */
        start local 3 // java.lang.String key
         4: .line 81
            aload 0 /* config */
            aload 3 /* key */
            invokeinterface org.apache.commons.configuration.Configuration.getProperty:(Ljava/lang/String;)Ljava/lang/Object;
            astore 4 /* property */
        start local 4 // java.lang.Object property
         5: .line 84
            aload 4 /* property */
            instanceof java.util.List
            ifeq 7
         6: .line 86
            new java.util.ArrayList
            dup
            aload 4 /* property */
            checkcast java.util.List
            invokespecial java.util.ArrayList.<init>:(Ljava/util/Collection;)V
            astore 4 /* property */
         7: .line 89
      StackMap locals: java.lang.String java.lang.Object
      StackMap stack:
            aload 1 /* props */
            aload 3 /* key */
            aload 4 /* property */
            invokevirtual org.apache.commons.collections.ExtendedProperties.setProperty:(Ljava/lang/String;Ljava/lang/Object;)V
        end local 4 // java.lang.Object property
        end local 3 // java.lang.String key
         8: .line 78
      StackMap locals:
      StackMap stack:
            aload 2 /* keys */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
        end local 2 // java.util.Iterator keys
         9: .line 92
            aload 1 /* props */
            areturn
        end local 1 // org.apache.commons.collections.ExtendedProperties props
        end local 0 // org.apache.commons.configuration.Configuration config
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   10     0    config  Lorg/apache/commons/configuration/Configuration;
            1   10     1     props  Lorg/apache/commons/collections/ExtendedProperties;
            2    9     2      keys  Ljava/util/Iterator<Ljava/lang/String;>;
            4    8     3       key  Ljava/lang/String;
            5    8     4  property  Ljava/lang/Object;
    MethodParameters:
        Name  Flags
      config  

  public static java.util.Properties getProperties(org.apache.commons.configuration.Configuration);
    descriptor: (Lorg/apache/commons/configuration/Configuration;)Ljava/util/Properties;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=6, args_size=1
        start local 0 // org.apache.commons.configuration.Configuration config
         0: .line 105
            new java.util.Properties
            dup
            invokespecial java.util.Properties.<init>:()V
            astore 1 /* props */
        start local 1 // java.util.Properties props
         1: .line 107
            aload 0 /* config */
            instanceof org.apache.commons.configuration.AbstractConfiguration
            ifeq 3
         2: .line 108
            aload 0 /* config */
            checkcast org.apache.commons.configuration.AbstractConfiguration
            invokevirtual org.apache.commons.configuration.AbstractConfiguration.getListDelimiter:()C
            goto 4
      StackMap locals: java.util.Properties
      StackMap stack:
         3: bipush 44
         4: .line 107
      StackMap locals:
      StackMap stack: int
            istore 2 /* delimiter */
        start local 2 // char delimiter
         5: .line 110
            aload 0 /* config */
            invokeinterface org.apache.commons.configuration.Configuration.getKeys:()Ljava/util/Iterator;
            astore 3 /* keys */
        start local 3 // java.util.Iterator keys
         6: goto 10
         7: .line 112
      StackMap locals: int java.util.Iterator
      StackMap stack:
            aload 3 /* keys */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.String
            astore 4 /* key */
        start local 4 // java.lang.String key
         8: .line 113
            aload 0 /* config */
            aload 4 /* key */
            invokeinterface org.apache.commons.configuration.Configuration.getList:(Ljava/lang/String;)Ljava/util/List;
            astore 5 /* list */
        start local 5 // java.util.List list
         9: .line 116
            aload 1 /* props */
            aload 4 /* key */
            aload 5 /* list */
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            iload 2 /* delimiter */
            invokestatic org.apache.commons.lang.StringUtils.join:(Ljava/util/Iterator;C)Ljava/lang/String;
            invokevirtual java.util.Properties.setProperty:(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/Object;
            pop
        end local 5 // java.util.List list
        end local 4 // java.lang.String key
        10: .line 110
      StackMap locals:
      StackMap stack:
            aload 3 /* keys */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 7
        end local 3 // java.util.Iterator keys
        11: .line 119
            aload 1 /* props */
            areturn
        end local 2 // char delimiter
        end local 1 // java.util.Properties props
        end local 0 // org.apache.commons.configuration.Configuration config
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   12     0     config  Lorg/apache/commons/configuration/Configuration;
            1   12     1      props  Ljava/util/Properties;
            5   12     2  delimiter  C
            6   11     3       keys  Ljava/util/Iterator<Ljava/lang/String;>;
            8   10     4        key  Ljava/lang/String;
            9   10     5       list  Ljava/util/List<Ljava/lang/Object;>;
    MethodParameters:
        Name  Flags
      config  

  public static java.util.Map<java.lang.Object, java.lang.Object> getMap(org.apache.commons.configuration.Configuration);
    descriptor: (Lorg/apache/commons/configuration/Configuration;)Ljava/util/Map;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.commons.configuration.Configuration config
         0: .line 130
            new org.apache.commons.configuration.ConfigurationMap
            dup
            aload 0 /* config */
            invokespecial org.apache.commons.configuration.ConfigurationMap.<init>:(Lorg/apache/commons/configuration/Configuration;)V
            areturn
        end local 0 // org.apache.commons.configuration.Configuration config
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0  config  Lorg/apache/commons/configuration/Configuration;
    Signature: (Lorg/apache/commons/configuration/Configuration;)Ljava/util/Map<Ljava/lang/Object;Ljava/lang/Object;>;
    MethodParameters:
        Name  Flags
      config  
}
SourceFile: "ConfigurationConverter.java"