public class org.eclipse.jetty.util.component.AttributeContainerMap extends org.eclipse.jetty.util.component.ContainerLifeCycle implements org.eclipse.jetty.util.Attributes
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.jetty.util.component.AttributeContainerMap
  super_class: org.eclipse.jetty.util.component.ContainerLifeCycle
{
  private final java.util.Map<java.lang.String, java.lang.Object> _map;
    descriptor: Ljava/util/Map;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/Map<Ljava/lang/String;Ljava/lang/Object;>;

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.util.component.AttributeContainerMap this
         0: .line 32
            aload 0 /* this */
            invokespecial org.eclipse.jetty.util.component.ContainerLifeCycle.<init>:()V
         1: .line 34
            aload 0 /* this */
            new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
            putfield org.eclipse.jetty.util.component.AttributeContainerMap._map:Ljava/util/Map;
         2: .line 32
            return
        end local 0 // org.eclipse.jetty.util.component.AttributeContainerMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/jetty/util/component/AttributeContainerMap;

  public synchronized void setAttribute(java.lang.String, java.lang.Object);
    descriptor: (Ljava/lang/String;Ljava/lang/Object;)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.jetty.util.component.AttributeContainerMap this
        start local 1 // java.lang.String name
        start local 2 // java.lang.Object attribute
         0: .line 39
            aload 0 /* this */
            getfield org.eclipse.jetty.util.component.AttributeContainerMap._map:Ljava/util/Map;
            aload 1 /* name */
            aload 2 /* attribute */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            astore 3 /* old */
        start local 3 // java.lang.Object old
         1: .line 40
            aload 0 /* this */
            aload 3 /* old */
            aload 2 /* attribute */
            invokevirtual org.eclipse.jetty.util.component.AttributeContainerMap.updateBean:(Ljava/lang/Object;Ljava/lang/Object;)V
         2: .line 41
            return
        end local 3 // java.lang.Object old
        end local 2 // java.lang.Object attribute
        end local 1 // java.lang.String name
        end local 0 // org.eclipse.jetty.util.component.AttributeContainerMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lorg/eclipse/jetty/util/component/AttributeContainerMap;
            0    3     1       name  Ljava/lang/String;
            0    3     2  attribute  Ljava/lang/Object;
            1    3     3        old  Ljava/lang/Object;
    MethodParameters:
           Name  Flags
      name       
      attribute  

  public synchronized void removeAttribute(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.jetty.util.component.AttributeContainerMap this
        start local 1 // java.lang.String name
         0: .line 46
            aload 0 /* this */
            getfield org.eclipse.jetty.util.component.AttributeContainerMap._map:Ljava/util/Map;
            aload 1 /* name */
            invokeinterface java.util.Map.remove:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 2 /* removed */
        start local 2 // java.lang.Object removed
         1: .line 47
            aload 2 /* removed */
            ifnull 3
         2: .line 48
            aload 0 /* this */
            aload 2 /* removed */
            invokevirtual org.eclipse.jetty.util.component.AttributeContainerMap.removeBean:(Ljava/lang/Object;)Z
            pop
         3: .line 49
      StackMap locals: java.lang.Object
      StackMap stack:
            return
        end local 2 // java.lang.Object removed
        end local 1 // java.lang.String name
        end local 0 // org.eclipse.jetty.util.component.AttributeContainerMap this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lorg/eclipse/jetty/util/component/AttributeContainerMap;
            0    4     1     name  Ljava/lang/String;
            1    4     2  removed  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      name  

  public synchronized java.lang.Object getAttribute(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/Object;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.util.component.AttributeContainerMap this
        start local 1 // java.lang.String name
         0: .line 54
            aload 0 /* this */
            getfield org.eclipse.jetty.util.component.AttributeContainerMap._map:Ljava/util/Map;
            aload 1 /* name */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            areturn
        end local 1 // java.lang.String name
        end local 0 // org.eclipse.jetty.util.component.AttributeContainerMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/util/component/AttributeContainerMap;
            0    1     1  name  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      name  

  public synchronized java.util.Enumeration<java.lang.String> getAttributeNames();
    descriptor: ()Ljava/util/Enumeration;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.util.component.AttributeContainerMap this
         0: .line 60
            aload 0 /* this */
            getfield org.eclipse.jetty.util.component.AttributeContainerMap._map:Ljava/util/Map;
            invokeinterface java.util.Map.keySet:()Ljava/util/Set;
            invokestatic java.util.Collections.enumeration:(Ljava/util/Collection;)Ljava/util/Enumeration;
            areturn
        end local 0 // org.eclipse.jetty.util.component.AttributeContainerMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/util/component/AttributeContainerMap;
    Signature: ()Ljava/util/Enumeration<Ljava/lang/String;>;

  public synchronized void clearAttributes();
    descriptor: ()V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.util.component.AttributeContainerMap this
         0: .line 66
            aload 0 /* this */
            getfield org.eclipse.jetty.util.component.AttributeContainerMap._map:Ljava/util/Map;
            invokeinterface java.util.Map.clear:()V
         1: .line 67
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.util.component.AttributeContainerMap.removeBeans:()V
         2: .line 68
            return
        end local 0 // org.eclipse.jetty.util.component.AttributeContainerMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/jetty/util/component/AttributeContainerMap;

  public void dump(java.lang.Appendable, java.lang.String);
    descriptor: (Ljava/lang/Appendable;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.eclipse.jetty.util.component.AttributeContainerMap this
        start local 1 // java.lang.Appendable out
        start local 2 // java.lang.String indent
         0: .line 73
            aload 1 /* out */
            aload 0 /* this */
            invokestatic org.eclipse.jetty.util.component.Dumpable.dumpObject:(Ljava/lang/Appendable;Ljava/lang/Object;)V
         1: .line 74
            aload 1 /* out */
            aload 2 /* indent */
            aload 0 /* this */
            getfield org.eclipse.jetty.util.component.AttributeContainerMap._map:Ljava/util/Map;
            iconst_1
            invokestatic org.eclipse.jetty.util.component.Dumpable.dumpMapEntries:(Ljava/lang/Appendable;Ljava/lang/String;Ljava/util/Map;Z)V
         2: .line 75
            return
        end local 2 // java.lang.String indent
        end local 1 // java.lang.Appendable out
        end local 0 // org.eclipse.jetty.util.component.AttributeContainerMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/eclipse/jetty/util/component/AttributeContainerMap;
            0    3     1     out  Ljava/lang/Appendable;
            0    3     2  indent  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      out     
      indent  

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.util.component.AttributeContainerMap this
         0: .line 80
            ldc "%s@%x{size=%d}"
            iconst_3
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            aastore
            dup
            iconst_1
            aload 0 /* this */
            invokevirtual java.lang.Object.hashCode:()I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_2
            aload 0 /* this */
            getfield org.eclipse.jetty.util.component.AttributeContainerMap._map:Ljava/util/Map;
            invokeinterface java.util.Map.size:()I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            areturn
        end local 0 // org.eclipse.jetty.util.component.AttributeContainerMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/util/component/AttributeContainerMap;
}
SourceFile: "AttributeContainerMap.java"