public class org.hibernate.type.IdentifierBagType extends org.hibernate.type.CollectionType
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.hibernate.type.IdentifierBagType
  super_class: org.hibernate.type.CollectionType
{
  public void <init>(org.hibernate.type.TypeFactory$TypeScope, java.lang.String, java.lang.String);
    descriptor: (Lorg/hibernate/type/TypeFactory$TypeScope;Ljava/lang/String;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.hibernate.type.IdentifierBagType this
        start local 1 // org.hibernate.type.TypeFactory$TypeScope typeScope
        start local 2 // java.lang.String role
        start local 3 // java.lang.String propertyRef
         0: .line 21
            aload 0 /* this */
            aload 1 /* typeScope */
            aload 2 /* role */
            aload 3 /* propertyRef */
            invokespecial org.hibernate.type.CollectionType.<init>:(Lorg/hibernate/type/TypeFactory$TypeScope;Ljava/lang/String;Ljava/lang/String;)V
         1: .line 22
            return
        end local 3 // java.lang.String propertyRef
        end local 2 // java.lang.String role
        end local 1 // org.hibernate.type.TypeFactory$TypeScope typeScope
        end local 0 // org.hibernate.type.IdentifierBagType this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lorg/hibernate/type/IdentifierBagType;
            0    2     1    typeScope  Lorg/hibernate/type/TypeFactory$TypeScope;
            0    2     2         role  Ljava/lang/String;
            0    2     3  propertyRef  Ljava/lang/String;
    MethodParameters:
             Name  Flags
      typeScope    
      role         
      propertyRef  

  public org.hibernate.collection.spi.PersistentCollection instantiate(org.hibernate.engine.spi.SharedSessionContractImplementor, org.hibernate.persister.collection.CollectionPersister, java.io.Serializable);
    descriptor: (Lorg/hibernate/engine/spi/SharedSessionContractImplementor;Lorg/hibernate/persister/collection/CollectionPersister;Ljava/io/Serializable;)Lorg/hibernate/collection/spi/PersistentCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // org.hibernate.type.IdentifierBagType this
        start local 1 // org.hibernate.engine.spi.SharedSessionContractImplementor session
        start local 2 // org.hibernate.persister.collection.CollectionPersister persister
        start local 3 // java.io.Serializable key
         0: .line 30
            new org.hibernate.collection.internal.PersistentIdentifierBag
            dup
            aload 1 /* session */
            invokespecial org.hibernate.collection.internal.PersistentIdentifierBag.<init>:(Lorg/hibernate/engine/spi/SharedSessionContractImplementor;)V
            areturn
        end local 3 // java.io.Serializable key
        end local 2 // org.hibernate.persister.collection.CollectionPersister persister
        end local 1 // org.hibernate.engine.spi.SharedSessionContractImplementor session
        end local 0 // org.hibernate.type.IdentifierBagType this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/hibernate/type/IdentifierBagType;
            0    1     1    session  Lorg/hibernate/engine/spi/SharedSessionContractImplementor;
            0    1     2  persister  Lorg/hibernate/persister/collection/CollectionPersister;
            0    1     3        key  Ljava/io/Serializable;
    Exceptions:
      throws org.hibernate.HibernateException
    MethodParameters:
           Name  Flags
      session    
      persister  
      key        

  public java.lang.Object instantiate(int);
    descriptor: (I)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.hibernate.type.IdentifierBagType this
        start local 1 // int anticipatedSize
         0: .line 35
            iload 1 /* anticipatedSize */
            ifgt 1
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            goto 2
      StackMap locals:
      StackMap stack:
         1: new java.util.ArrayList
            dup
            iload 1 /* anticipatedSize */
            iconst_1
            iadd
            invokespecial java.util.ArrayList.<init>:(I)V
      StackMap locals:
      StackMap stack: java.util.ArrayList
         2: areturn
        end local 1 // int anticipatedSize
        end local 0 // org.hibernate.type.IdentifierBagType this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    3     0             this  Lorg/hibernate/type/IdentifierBagType;
            0    3     1  anticipatedSize  I
    MethodParameters:
                 Name  Flags
      anticipatedSize  

  public java.lang.Class getReturnedClass();
    descriptor: ()Ljava/lang/Class;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hibernate.type.IdentifierBagType this
         0: .line 40
            ldc Ljava/util/Collection;
            areturn
        end local 0 // org.hibernate.type.IdentifierBagType this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hibernate/type/IdentifierBagType;

  public org.hibernate.collection.spi.PersistentCollection wrap(org.hibernate.engine.spi.SharedSessionContractImplementor, java.lang.Object);
    descriptor: (Lorg/hibernate/engine/spi/SharedSessionContractImplementor;Ljava/lang/Object;)Lorg/hibernate/collection/spi/PersistentCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.hibernate.type.IdentifierBagType this
        start local 1 // org.hibernate.engine.spi.SharedSessionContractImplementor session
        start local 2 // java.lang.Object collection
         0: .line 45
            new org.hibernate.collection.internal.PersistentIdentifierBag
            dup
            aload 1 /* session */
            aload 2 /* collection */
            checkcast java.util.Collection
            invokespecial org.hibernate.collection.internal.PersistentIdentifierBag.<init>:(Lorg/hibernate/engine/spi/SharedSessionContractImplementor;Ljava/util/Collection;)V
            areturn
        end local 2 // java.lang.Object collection
        end local 1 // org.hibernate.engine.spi.SharedSessionContractImplementor session
        end local 0 // org.hibernate.type.IdentifierBagType this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lorg/hibernate/type/IdentifierBagType;
            0    1     1     session  Lorg/hibernate/engine/spi/SharedSessionContractImplementor;
            0    1     2  collection  Ljava/lang/Object;
    MethodParameters:
            Name  Flags
      session     
      collection  
}
SourceFile: "IdentifierBagType.java"
InnerClasses:
  public abstract TypeScope = org.hibernate.type.TypeFactory$TypeScope of org.hibernate.type.TypeFactory