public abstract class org.hibernate.event.spi.AbstractCollectionEvent extends org.hibernate.event.spi.AbstractEvent
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: org.hibernate.event.spi.AbstractCollectionEvent
  super_class: org.hibernate.event.spi.AbstractEvent
{
  private final org.hibernate.collection.spi.PersistentCollection collection;
    descriptor: Lorg/hibernate/collection/spi/PersistentCollection;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.lang.Object affectedOwner;
    descriptor: Ljava/lang/Object;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.io.Serializable affectedOwnerId;
    descriptor: Ljava/io/Serializable;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.lang.String affectedOwnerEntityName;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(org.hibernate.persister.collection.CollectionPersister, org.hibernate.collection.spi.PersistentCollection, org.hibernate.event.spi.EventSource, java.lang.Object, java.io.Serializable);
    descriptor: (Lorg/hibernate/persister/collection/CollectionPersister;Lorg/hibernate/collection/spi/PersistentCollection;Lorg/hibernate/event/spi/EventSource;Ljava/lang/Object;Ljava/io/Serializable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=6
        start local 0 // org.hibernate.event.spi.AbstractCollectionEvent this
        start local 1 // org.hibernate.persister.collection.CollectionPersister collectionPersister
        start local 2 // org.hibernate.collection.spi.PersistentCollection collection
        start local 3 // org.hibernate.event.spi.EventSource source
        start local 4 // java.lang.Object affectedOwner
        start local 5 // java.io.Serializable affectedOwnerId
         0: .line 44
            aload 0 /* this */
            aload 3 /* source */
            invokespecial org.hibernate.event.spi.AbstractEvent.<init>:(Lorg/hibernate/event/spi/EventSource;)V
         1: .line 45
            aload 0 /* this */
            aload 2 /* collection */
            putfield org.hibernate.event.spi.AbstractCollectionEvent.collection:Lorg/hibernate/collection/spi/PersistentCollection;
         2: .line 46
            aload 0 /* this */
            aload 4 /* affectedOwner */
            putfield org.hibernate.event.spi.AbstractCollectionEvent.affectedOwner:Ljava/lang/Object;
         3: .line 47
            aload 0 /* this */
            aload 5 /* affectedOwnerId */
            putfield org.hibernate.event.spi.AbstractCollectionEvent.affectedOwnerId:Ljava/io/Serializable;
         4: .line 48
            aload 0 /* this */
         5: .line 49
            aload 1 /* collectionPersister */
            aload 4 /* affectedOwner */
            aload 3 /* source */
            invokestatic org.hibernate.event.spi.AbstractCollectionEvent.getAffectedOwnerEntityName:(Lorg/hibernate/persister/collection/CollectionPersister;Ljava/lang/Object;Lorg/hibernate/event/spi/EventSource;)Ljava/lang/String;
         6: .line 48
            putfield org.hibernate.event.spi.AbstractCollectionEvent.affectedOwnerEntityName:Ljava/lang/String;
         7: .line 50
            return
        end local 5 // java.io.Serializable affectedOwnerId
        end local 4 // java.lang.Object affectedOwner
        end local 3 // org.hibernate.event.spi.EventSource source
        end local 2 // org.hibernate.collection.spi.PersistentCollection collection
        end local 1 // org.hibernate.persister.collection.CollectionPersister collectionPersister
        end local 0 // org.hibernate.event.spi.AbstractCollectionEvent this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0    8     0                 this  Lorg/hibernate/event/spi/AbstractCollectionEvent;
            0    8     1  collectionPersister  Lorg/hibernate/persister/collection/CollectionPersister;
            0    8     2           collection  Lorg/hibernate/collection/spi/PersistentCollection;
            0    8     3               source  Lorg/hibernate/event/spi/EventSource;
            0    8     4        affectedOwner  Ljava/lang/Object;
            0    8     5      affectedOwnerId  Ljava/io/Serializable;
    MethodParameters:
                     Name  Flags
      collectionPersister  
      collection           
      source               
      affectedOwner        
      affectedOwnerId      

  protected static org.hibernate.persister.collection.CollectionPersister getLoadedCollectionPersister(org.hibernate.collection.spi.PersistentCollection, org.hibernate.event.spi.EventSource);
    descriptor: (Lorg/hibernate/collection/spi/PersistentCollection;Lorg/hibernate/event/spi/EventSource;)Lorg/hibernate/persister/collection/CollectionPersister;
    flags: (0x000c) ACC_PROTECTED, ACC_STATIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.hibernate.collection.spi.PersistentCollection collection
        start local 1 // org.hibernate.event.spi.EventSource source
         0: .line 53
            aload 1 /* source */
            invokeinterface org.hibernate.event.spi.EventSource.getPersistenceContext:()Lorg/hibernate/engine/spi/PersistenceContext;
            aload 0 /* collection */
            invokeinterface org.hibernate.engine.spi.PersistenceContext.getCollectionEntry:(Lorg/hibernate/collection/spi/PersistentCollection;)Lorg/hibernate/engine/spi/CollectionEntry;
            astore 2 /* ce */
        start local 2 // org.hibernate.engine.spi.CollectionEntry ce
         1: .line 54
            aload 2 /* ce */
            ifnonnull 2
            aconst_null
            goto 3
      StackMap locals: org.hibernate.engine.spi.CollectionEntry
      StackMap stack:
         2: aload 2 /* ce */
            invokevirtual org.hibernate.engine.spi.CollectionEntry.getLoadedPersister:()Lorg/hibernate/persister/collection/CollectionPersister;
      StackMap locals:
      StackMap stack: org.hibernate.persister.collection.CollectionPersister
         3: areturn
        end local 2 // org.hibernate.engine.spi.CollectionEntry ce
        end local 1 // org.hibernate.event.spi.EventSource source
        end local 0 // org.hibernate.collection.spi.PersistentCollection collection
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0  collection  Lorg/hibernate/collection/spi/PersistentCollection;
            0    4     1      source  Lorg/hibernate/event/spi/EventSource;
            1    4     2          ce  Lorg/hibernate/engine/spi/CollectionEntry;
    MethodParameters:
            Name  Flags
      collection  
      source      

  protected static java.lang.Object getLoadedOwnerOrNull(org.hibernate.collection.spi.PersistentCollection, org.hibernate.event.spi.EventSource);
    descriptor: (Lorg/hibernate/collection/spi/PersistentCollection;Lorg/hibernate/event/spi/EventSource;)Ljava/lang/Object;
    flags: (0x000c) ACC_PROTECTED, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hibernate.collection.spi.PersistentCollection collection
        start local 1 // org.hibernate.event.spi.EventSource source
         0: .line 58
            aload 1 /* source */
            invokeinterface org.hibernate.event.spi.EventSource.getPersistenceContext:()Lorg/hibernate/engine/spi/PersistenceContext;
            aload 0 /* collection */
            invokeinterface org.hibernate.engine.spi.PersistenceContext.getLoadedCollectionOwnerOrNull:(Lorg/hibernate/collection/spi/PersistentCollection;)Ljava/lang/Object;
            areturn
        end local 1 // org.hibernate.event.spi.EventSource source
        end local 0 // org.hibernate.collection.spi.PersistentCollection collection
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0  collection  Lorg/hibernate/collection/spi/PersistentCollection;
            0    1     1      source  Lorg/hibernate/event/spi/EventSource;
    MethodParameters:
            Name  Flags
      collection  
      source      

  protected static java.io.Serializable getLoadedOwnerIdOrNull(org.hibernate.collection.spi.PersistentCollection, org.hibernate.event.spi.EventSource);
    descriptor: (Lorg/hibernate/collection/spi/PersistentCollection;Lorg/hibernate/event/spi/EventSource;)Ljava/io/Serializable;
    flags: (0x000c) ACC_PROTECTED, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hibernate.collection.spi.PersistentCollection collection
        start local 1 // org.hibernate.event.spi.EventSource source
         0: .line 62
            aload 1 /* source */
            invokeinterface org.hibernate.event.spi.EventSource.getPersistenceContext:()Lorg/hibernate/engine/spi/PersistenceContext;
            aload 0 /* collection */
            invokeinterface org.hibernate.engine.spi.PersistenceContext.getLoadedCollectionOwnerIdOrNull:(Lorg/hibernate/collection/spi/PersistentCollection;)Ljava/io/Serializable;
            areturn
        end local 1 // org.hibernate.event.spi.EventSource source
        end local 0 // org.hibernate.collection.spi.PersistentCollection collection
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0  collection  Lorg/hibernate/collection/spi/PersistentCollection;
            0    1     1      source  Lorg/hibernate/event/spi/EventSource;
    MethodParameters:
            Name  Flags
      collection  
      source      

  protected static java.io.Serializable getOwnerIdOrNull(java.lang.Object, org.hibernate.event.spi.EventSource);
    descriptor: (Ljava/lang/Object;Lorg/hibernate/event/spi/EventSource;)Ljava/io/Serializable;
    flags: (0x000c) ACC_PROTECTED, ACC_STATIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // java.lang.Object owner
        start local 1 // org.hibernate.event.spi.EventSource source
         0: .line 66
            aload 1 /* source */
            invokeinterface org.hibernate.event.spi.EventSource.getPersistenceContext:()Lorg/hibernate/engine/spi/PersistenceContext;
            aload 0 /* owner */
            invokeinterface org.hibernate.engine.spi.PersistenceContext.getEntry:(Ljava/lang/Object;)Lorg/hibernate/engine/spi/EntityEntry;
            astore 2 /* ownerEntry */
        start local 2 // org.hibernate.engine.spi.EntityEntry ownerEntry
         1: .line 67
            aload 2 /* ownerEntry */
            ifnonnull 2
            aconst_null
            goto 3
      StackMap locals: org.hibernate.engine.spi.EntityEntry
      StackMap stack:
         2: aload 2 /* ownerEntry */
            invokeinterface org.hibernate.engine.spi.EntityEntry.getId:()Ljava/io/Serializable;
      StackMap locals:
      StackMap stack: java.io.Serializable
         3: areturn
        end local 2 // org.hibernate.engine.spi.EntityEntry ownerEntry
        end local 1 // org.hibernate.event.spi.EventSource source
        end local 0 // java.lang.Object owner
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0       owner  Ljava/lang/Object;
            0    4     1      source  Lorg/hibernate/event/spi/EventSource;
            1    4     2  ownerEntry  Lorg/hibernate/engine/spi/EntityEntry;
    MethodParameters:
        Name  Flags
      owner   
      source  

  protected static java.lang.String getAffectedOwnerEntityName(org.hibernate.persister.collection.CollectionPersister, java.lang.Object, org.hibernate.event.spi.EventSource);
    descriptor: (Lorg/hibernate/persister/collection/CollectionPersister;Ljava/lang/Object;Lorg/hibernate/event/spi/EventSource;)Ljava/lang/String;
    flags: (0x000c) ACC_PROTECTED, ACC_STATIC
    Code:
      stack=2, locals=5, args_size=3
        start local 0 // org.hibernate.persister.collection.CollectionPersister collectionPersister
        start local 1 // java.lang.Object affectedOwner
        start local 2 // org.hibernate.event.spi.EventSource source
         0: .line 75
            aload 0 /* collectionPersister */
            ifnonnull 1
            aconst_null
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* collectionPersister */
            invokeinterface org.hibernate.persister.collection.CollectionPersister.getOwnerEntityPersister:()Lorg/hibernate/persister/entity/EntityPersister;
            invokeinterface org.hibernate.persister.entity.EntityPersister.getEntityName:()Ljava/lang/String;
         2: .line 74
      StackMap locals:
      StackMap stack: java.lang.String
            astore 3 /* entityName */
        start local 3 // java.lang.String entityName
         3: .line 76
            aload 1 /* affectedOwner */
            ifnull 7
         4: .line 77
            aload 2 /* source */
            invokeinterface org.hibernate.event.spi.EventSource.getPersistenceContext:()Lorg/hibernate/engine/spi/PersistenceContext;
            aload 1 /* affectedOwner */
            invokeinterface org.hibernate.engine.spi.PersistenceContext.getEntry:(Ljava/lang/Object;)Lorg/hibernate/engine/spi/EntityEntry;
            astore 4 /* ee */
        start local 4 // org.hibernate.engine.spi.EntityEntry ee
         5: .line 78
            aload 4 /* ee */
            ifnull 7
            aload 4 /* ee */
            invokeinterface org.hibernate.engine.spi.EntityEntry.getEntityName:()Ljava/lang/String;
            ifnull 7
         6: .line 79
            aload 4 /* ee */
            invokeinterface org.hibernate.engine.spi.EntityEntry.getEntityName:()Ljava/lang/String;
            astore 3 /* entityName */
        end local 4 // org.hibernate.engine.spi.EntityEntry ee
         7: .line 82
      StackMap locals: java.lang.String
      StackMap stack:
            aload 3 /* entityName */
            areturn
        end local 3 // java.lang.String entityName
        end local 2 // org.hibernate.event.spi.EventSource source
        end local 1 // java.lang.Object affectedOwner
        end local 0 // org.hibernate.persister.collection.CollectionPersister collectionPersister
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0    8     0  collectionPersister  Lorg/hibernate/persister/collection/CollectionPersister;
            0    8     1        affectedOwner  Ljava/lang/Object;
            0    8     2               source  Lorg/hibernate/event/spi/EventSource;
            3    8     3           entityName  Ljava/lang/String;
            5    7     4                   ee  Lorg/hibernate/engine/spi/EntityEntry;
    MethodParameters:
                     Name  Flags
      collectionPersister  
      affectedOwner        
      source               

  public org.hibernate.collection.spi.PersistentCollection getCollection();
    descriptor: ()Lorg/hibernate/collection/spi/PersistentCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hibernate.event.spi.AbstractCollectionEvent this
         0: .line 86
            aload 0 /* this */
            getfield org.hibernate.event.spi.AbstractCollectionEvent.collection:Lorg/hibernate/collection/spi/PersistentCollection;
            areturn
        end local 0 // org.hibernate.event.spi.AbstractCollectionEvent this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hibernate/event/spi/AbstractCollectionEvent;

  public java.lang.Object getAffectedOwnerOrNull();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hibernate.event.spi.AbstractCollectionEvent this
         0: .line 96
            aload 0 /* this */
            getfield org.hibernate.event.spi.AbstractCollectionEvent.affectedOwner:Ljava/lang/Object;
            areturn
        end local 0 // org.hibernate.event.spi.AbstractCollectionEvent this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hibernate/event/spi/AbstractCollectionEvent;

  public java.io.Serializable getAffectedOwnerIdOrNull();
    descriptor: ()Ljava/io/Serializable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hibernate.event.spi.AbstractCollectionEvent this
         0: .line 107
            aload 0 /* this */
            getfield org.hibernate.event.spi.AbstractCollectionEvent.affectedOwnerId:Ljava/io/Serializable;
            areturn
        end local 0 // org.hibernate.event.spi.AbstractCollectionEvent this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hibernate/event/spi/AbstractCollectionEvent;

  public java.lang.String getAffectedOwnerEntityName();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hibernate.event.spi.AbstractCollectionEvent this
         0: .line 117
            aload 0 /* this */
            getfield org.hibernate.event.spi.AbstractCollectionEvent.affectedOwnerEntityName:Ljava/lang/String;
            areturn
        end local 0 // org.hibernate.event.spi.AbstractCollectionEvent this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hibernate/event/spi/AbstractCollectionEvent;
}
SourceFile: "AbstractCollectionEvent.java"