public abstract class org.springframework.core.AttributeAccessorSupport implements org.springframework.core.AttributeAccessor, java.io.Serializable
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: org.springframework.core.AttributeAccessorSupport
  super_class: java.lang.Object
{
  private final java.util.Map<java.lang.String, java.lang.Object> attributes;
    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.springframework.core.AttributeAccessorSupport this
         0: .line 38
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 41
            aload 0 /* this */
            new java.util.LinkedHashMap
            dup
            invokespecial java.util.LinkedHashMap.<init>:()V
            putfield org.springframework.core.AttributeAccessorSupport.attributes:Ljava/util/Map;
         2: .line 38
            return
        end local 0 // org.springframework.core.AttributeAccessorSupport this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/springframework/core/AttributeAccessorSupport;

  public void setAttribute(java.lang.String, java.lang.Object);
    descriptor: (Ljava/lang/String;Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.springframework.core.AttributeAccessorSupport this
        start local 1 // java.lang.String name
        start local 2 // java.lang.Object value
         0: .line 46
            aload 1 /* name */
            ldc "Name must not be null"
            invokestatic org.springframework.util.Assert.notNull:(Ljava/lang/Object;Ljava/lang/String;)V
         1: .line 47
            aload 2 /* value */
            ifnull 4
         2: .line 48
            aload 0 /* this */
            getfield org.springframework.core.AttributeAccessorSupport.attributes:Ljava/util/Map;
            aload 1 /* name */
            aload 2 /* value */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         3: .line 49
            goto 5
         4: .line 51
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* name */
            invokevirtual org.springframework.core.AttributeAccessorSupport.removeAttribute:(Ljava/lang/String;)Ljava/lang/Object;
            pop
         5: .line 53
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.lang.Object value
        end local 1 // java.lang.String name
        end local 0 // org.springframework.core.AttributeAccessorSupport this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lorg/springframework/core/AttributeAccessorSupport;
            0    6     1   name  Ljava/lang/String;
            0    6     2  value  Ljava/lang/Object;
    RuntimeVisibleParameterAnnotations: 
      0:
      1:
        org.springframework.lang.Nullable()
    MethodParameters:
       Name  Flags
      name   
      value  

  public java.lang.Object getAttribute(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.core.AttributeAccessorSupport this
        start local 1 // java.lang.String name
         0: .line 58
            aload 1 /* name */
            ldc "Name must not be null"
            invokestatic org.springframework.util.Assert.notNull:(Ljava/lang/Object;Ljava/lang/String;)V
         1: .line 59
            aload 0 /* this */
            getfield org.springframework.core.AttributeAccessorSupport.attributes: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.springframework.core.AttributeAccessorSupport this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/springframework/core/AttributeAccessorSupport;
            0    2     1  name  Ljava/lang/String;
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()
    MethodParameters:
      Name  Flags
      name  

  public java.lang.Object removeAttribute(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.core.AttributeAccessorSupport this
        start local 1 // java.lang.String name
         0: .line 65
            aload 1 /* name */
            ldc "Name must not be null"
            invokestatic org.springframework.util.Assert.notNull:(Ljava/lang/Object;Ljava/lang/String;)V
         1: .line 66
            aload 0 /* this */
            getfield org.springframework.core.AttributeAccessorSupport.attributes:Ljava/util/Map;
            aload 1 /* name */
            invokeinterface java.util.Map.remove:(Ljava/lang/Object;)Ljava/lang/Object;
            areturn
        end local 1 // java.lang.String name
        end local 0 // org.springframework.core.AttributeAccessorSupport this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/springframework/core/AttributeAccessorSupport;
            0    2     1  name  Ljava/lang/String;
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()
    MethodParameters:
      Name  Flags
      name  

  public boolean hasAttribute(java.lang.String);
    descriptor: (Ljava/lang/String;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.core.AttributeAccessorSupport this
        start local 1 // java.lang.String name
         0: .line 71
            aload 1 /* name */
            ldc "Name must not be null"
            invokestatic org.springframework.util.Assert.notNull:(Ljava/lang/Object;Ljava/lang/String;)V
         1: .line 72
            aload 0 /* this */
            getfield org.springframework.core.AttributeAccessorSupport.attributes:Ljava/util/Map;
            aload 1 /* name */
            invokeinterface java.util.Map.containsKey:(Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.lang.String name
        end local 0 // org.springframework.core.AttributeAccessorSupport this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/springframework/core/AttributeAccessorSupport;
            0    2     1  name  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      name  

  public java.lang.String[] attributeNames();
    descriptor: ()[Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.core.AttributeAccessorSupport this
         0: .line 77
            aload 0 /* this */
            getfield org.springframework.core.AttributeAccessorSupport.attributes:Ljava/util/Map;
            invokeinterface java.util.Map.keySet:()Ljava/util/Set;
            invokestatic org.springframework.util.StringUtils.toStringArray:(Ljava/util/Collection;)[Ljava/lang/String;
            areturn
        end local 0 // org.springframework.core.AttributeAccessorSupport this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/core/AttributeAccessorSupport;

  protected void copyAttributesFrom(org.springframework.core.AttributeAccessor);
    descriptor: (Lorg/springframework/core/AttributeAccessor;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=7, args_size=2
        start local 0 // org.springframework.core.AttributeAccessorSupport this
        start local 1 // org.springframework.core.AttributeAccessor source
         0: .line 86
            aload 1 /* source */
            ldc "Source must not be null"
            invokestatic org.springframework.util.Assert.notNull:(Ljava/lang/Object;Ljava/lang/String;)V
         1: .line 87
            aload 1 /* source */
            invokeinterface org.springframework.core.AttributeAccessor.attributeNames:()[Ljava/lang/String;
            astore 2 /* attributeNames */
        start local 2 // java.lang.String[] attributeNames
         2: .line 88
            aload 2 /* attributeNames */
            dup
            astore 6
            arraylength
            istore 5
            iconst_0
            istore 4
            goto 6
      StackMap locals: org.springframework.core.AttributeAccessorSupport org.springframework.core.AttributeAccessor java.lang.String[] top int int java.lang.String[]
      StackMap stack:
         3: aload 6
            iload 4
            aaload
            astore 3 /* attributeName */
        start local 3 // java.lang.String attributeName
         4: .line 89
            aload 0 /* this */
            aload 3 /* attributeName */
            aload 1 /* source */
            aload 3 /* attributeName */
            invokeinterface org.springframework.core.AttributeAccessor.getAttribute:(Ljava/lang/String;)Ljava/lang/Object;
            invokevirtual org.springframework.core.AttributeAccessorSupport.setAttribute:(Ljava/lang/String;Ljava/lang/Object;)V
        end local 3 // java.lang.String attributeName
         5: .line 88
            iinc 4 1
      StackMap locals:
      StackMap stack:
         6: iload 4
            iload 5
            if_icmplt 3
         7: .line 91
            return
        end local 2 // java.lang.String[] attributeNames
        end local 1 // org.springframework.core.AttributeAccessor source
        end local 0 // org.springframework.core.AttributeAccessorSupport this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    8     0            this  Lorg/springframework/core/AttributeAccessorSupport;
            0    8     1          source  Lorg/springframework/core/AttributeAccessor;
            2    8     2  attributeNames  [Ljava/lang/String;
            4    5     3   attributeName  Ljava/lang/String;
    MethodParameters:
        Name  Flags
      source  

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.core.AttributeAccessorSupport this
        start local 1 // java.lang.Object other
         0: .line 96
            aload 0 /* this */
            aload 1 /* other */
            if_acmpeq 3
            aload 1 /* other */
            instanceof org.springframework.core.AttributeAccessorSupport
            ifeq 2
         1: .line 97
            aload 0 /* this */
            getfield org.springframework.core.AttributeAccessorSupport.attributes:Ljava/util/Map;
            aload 1 /* other */
            checkcast org.springframework.core.AttributeAccessorSupport
            getfield org.springframework.core.AttributeAccessorSupport.attributes:Ljava/util/Map;
            invokeinterface java.util.Map.equals:(Ljava/lang/Object;)Z
            ifne 3
         2: .line 96
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         3: iconst_1
            ireturn
        end local 1 // java.lang.Object other
        end local 0 // org.springframework.core.AttributeAccessorSupport this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/springframework/core/AttributeAccessorSupport;
            0    4     1  other  Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      other  

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.core.AttributeAccessorSupport this
         0: .line 102
            aload 0 /* this */
            getfield org.springframework.core.AttributeAccessorSupport.attributes:Ljava/util/Map;
            invokeinterface java.util.Map.hashCode:()I
            ireturn
        end local 0 // org.springframework.core.AttributeAccessorSupport this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/core/AttributeAccessorSupport;
}
SourceFile: "AttributeAccessorSupport.java"