abstract class org.apache.commons.configuration2.web.BaseWebConfiguration extends org.apache.commons.configuration2.AbstractConfiguration
  minor version: 0
  major version: 59
  flags: flags: (0x0420) ACC_SUPER, ACC_ABSTRACT
  this_class: org.apache.commons.configuration2.web.BaseWebConfiguration
  super_class: org.apache.commons.configuration2.AbstractConfiguration
{
  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.configuration2.web.BaseWebConfiguration this
         0: .line 35
            aload 0 /* this */
            invokespecial org.apache.commons.configuration2.AbstractConfiguration.<init>:()V
            return
        end local 0 // org.apache.commons.configuration2.web.BaseWebConfiguration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/configuration2/web/BaseWebConfiguration;

  protected boolean isEmptyInternal();
    descriptor: ()Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.configuration2.web.BaseWebConfiguration this
         0: .line 47
            aload 0 /* this */
            invokevirtual org.apache.commons.configuration2.web.BaseWebConfiguration.getKeysInternal:()Ljava/util/Iterator;
            invokeinterface java.util.Iterator.hasNext:()Z
            ifeq 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_1
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 0 // org.apache.commons.configuration2.web.BaseWebConfiguration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/configuration2/web/BaseWebConfiguration;

  protected boolean containsKeyInternal(java.lang.String);
    descriptor: (Ljava/lang/String;)Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.configuration2.web.BaseWebConfiguration this
        start local 1 // java.lang.String key
         0: .line 59
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual org.apache.commons.configuration2.web.BaseWebConfiguration.getPropertyInternal:(Ljava/lang/String;)Ljava/lang/Object;
            ifnull 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // java.lang.String key
        end local 0 // org.apache.commons.configuration2.web.BaseWebConfiguration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/configuration2/web/BaseWebConfiguration;
            0    2     1   key  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      key   final

  protected void clearPropertyDirect(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.configuration2.web.BaseWebConfiguration this
        start local 1 // java.lang.String key
         0: .line 73
            new java.lang.UnsupportedOperationException
            dup
            ldc "Read only configuration"
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // java.lang.String key
        end local 0 // org.apache.commons.configuration2.web.BaseWebConfiguration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/configuration2/web/BaseWebConfiguration;
            0    1     1   key  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      key   final

  protected void addPropertyDirect(java.lang.String, java.lang.Object);
    descriptor: (Ljava/lang/String;Ljava/lang/Object;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.apache.commons.configuration2.web.BaseWebConfiguration this
        start local 1 // java.lang.String key
        start local 2 // java.lang.Object obj
         0: .line 88
            new java.lang.UnsupportedOperationException
            dup
            ldc "Read only configuration"
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 2 // java.lang.Object obj
        end local 1 // java.lang.String key
        end local 0 // org.apache.commons.configuration2.web.BaseWebConfiguration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/configuration2/web/BaseWebConfiguration;
            0    1     1   key  Ljava/lang/String;
            0    1     2   obj  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      key   final
      obj   final

  protected java.lang.Object handleDelimiters(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.apache.commons.configuration2.web.BaseWebConfiguration this
        start local 1 // java.lang.Object value
         0: .line 101
            aload 1 /* value */
            instanceof java.lang.String
            ifeq 6
         1: .line 104
            aload 0 /* this */
            invokevirtual org.apache.commons.configuration2.web.BaseWebConfiguration.getListDelimiterHandler:()Lorg/apache/commons/configuration2/convert/ListDelimiterHandler;
            aload 1 /* value */
            checkcast java.lang.String
            iconst_1
            invokeinterface org.apache.commons.configuration2.convert.ListDelimiterHandler.split:(Ljava/lang/String;Z)Ljava/util/Collection;
         2: .line 103
            astore 2 /* values */
        start local 2 // java.util.Collection values
         3: .line 105
            aload 2 /* values */
            invokeinterface java.util.Collection.size:()I
            iconst_1
            if_icmple 4
            aload 2 /* values */
            goto 5
      StackMap locals: java.util.Collection
      StackMap stack:
         4: aload 2 /* values */
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
      StackMap locals:
      StackMap stack: java.lang.Object
         5: astore 1 /* value */
        end local 2 // java.util.Collection values
         6: .line 108
      StackMap locals:
      StackMap stack:
            aload 1 /* value */
            areturn
        end local 1 // java.lang.Object value
        end local 0 // org.apache.commons.configuration2.web.BaseWebConfiguration this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lorg/apache/commons/configuration2/web/BaseWebConfiguration;
            0    7     1   value  Ljava/lang/Object;
            3    6     2  values  Ljava/util/Collection<Ljava/lang/String;>;
    MethodParameters:
       Name  Flags
      value  
}
SourceFile: "BaseWebConfiguration.java"