public final class org.hibernate.engine.spi.AssociationKey implements java.io.Serializable
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: org.hibernate.engine.spi.AssociationKey
  super_class: java.lang.Object
{
  private org.hibernate.engine.spi.EntityKey ownerKey;
    descriptor: Lorg/hibernate/engine/spi/EntityKey;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.String propertyName;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  public void <init>(org.hibernate.engine.spi.EntityKey, java.lang.String);
    descriptor: (Lorg/hibernate/engine/spi/EntityKey;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.hibernate.engine.spi.AssociationKey this
        start local 1 // org.hibernate.engine.spi.EntityKey ownerKey
        start local 2 // java.lang.String propertyName
         0: .line 45
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 46
            aload 0 /* this */
            aload 1 /* ownerKey */
            putfield org.hibernate.engine.spi.AssociationKey.ownerKey:Lorg/hibernate/engine/spi/EntityKey;
         2: .line 47
            aload 0 /* this */
            aload 2 /* propertyName */
            putfield org.hibernate.engine.spi.AssociationKey.propertyName:Ljava/lang/String;
         3: .line 48
            return
        end local 2 // java.lang.String propertyName
        end local 1 // org.hibernate.engine.spi.EntityKey ownerKey
        end local 0 // org.hibernate.engine.spi.AssociationKey this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    4     0          this  Lorg/hibernate/engine/spi/AssociationKey;
            0    4     1      ownerKey  Lorg/hibernate/engine/spi/EntityKey;
            0    4     2  propertyName  Ljava/lang/String;
    MethodParameters:
              Name  Flags
      ownerKey      
      propertyName  

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.hibernate.engine.spi.AssociationKey this
        start local 1 // java.lang.Object o
         0: .line 52
            aload 0 /* this */
            aload 1 /* o */
            if_acmpne 2
         1: .line 53
            iconst_1
            ireturn
         2: .line 55
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            ifnull 3
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            aload 1 /* o */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            if_acmpeq 4
         3: .line 56
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
         4: .line 59
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            checkcast org.hibernate.engine.spi.AssociationKey
            astore 2 /* that */
        start local 2 // org.hibernate.engine.spi.AssociationKey that
         5: .line 60
            aload 0 /* this */
            getfield org.hibernate.engine.spi.AssociationKey.ownerKey:Lorg/hibernate/engine/spi/EntityKey;
            aload 2 /* that */
            getfield org.hibernate.engine.spi.AssociationKey.ownerKey:Lorg/hibernate/engine/spi/EntityKey;
            invokevirtual org.hibernate.engine.spi.EntityKey.equals:(Ljava/lang/Object;)Z
            ifeq 8
         6: .line 61
            aload 0 /* this */
            getfield org.hibernate.engine.spi.AssociationKey.propertyName:Ljava/lang/String;
            aload 2 /* that */
            getfield org.hibernate.engine.spi.AssociationKey.propertyName:Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 8
         7: .line 60
            iconst_1
            ireturn
      StackMap locals: org.hibernate.engine.spi.AssociationKey
      StackMap stack:
         8: iconst_0
            ireturn
        end local 2 // org.hibernate.engine.spi.AssociationKey that
        end local 1 // java.lang.Object o
        end local 0 // org.hibernate.engine.spi.AssociationKey this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lorg/hibernate/engine/spi/AssociationKey;
            0    9     1     o  Ljava/lang/Object;
            5    9     2  that  Lorg/hibernate/engine/spi/AssociationKey;
    MethodParameters:
      Name  Flags
      o     

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.hibernate.engine.spi.AssociationKey this
         0: .line 66
            aload 0 /* this */
            getfield org.hibernate.engine.spi.AssociationKey.ownerKey:Lorg/hibernate/engine/spi/EntityKey;
            invokevirtual org.hibernate.engine.spi.EntityKey.hashCode:()I
            istore 1 /* result */
        start local 1 // int result
         1: .line 67
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield org.hibernate.engine.spi.AssociationKey.propertyName:Ljava/lang/String;
            invokevirtual java.lang.String.hashCode:()I
            iadd
            istore 1 /* result */
         2: .line 68
            iload 1 /* result */
            ireturn
        end local 1 // int result
        end local 0 // org.hibernate.engine.spi.AssociationKey this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/hibernate/engine/spi/AssociationKey;
            1    3     1  result  I
}
SourceFile: "AssociationKey.java"