public class org.hibernate.collection.internal.PersistentBag extends org.hibernate.collection.internal.AbstractPersistentCollection implements java.util.List
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.hibernate.collection.internal.PersistentBag
  super_class: org.hibernate.collection.internal.AbstractPersistentCollection
{
  protected java.util.List bag;
    descriptor: Ljava/util/List;
    flags: (0x0004) ACC_PROTECTED

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hibernate.collection.internal.PersistentBag this
         0: .line 40
            aload 0 /* this */
            invokespecial org.hibernate.collection.internal.AbstractPersistentCollection.<init>:()V
         1: .line 41
            return
        end local 0 // org.hibernate.collection.internal.PersistentBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/hibernate/collection/internal/PersistentBag;

  public void <init>(org.hibernate.engine.spi.SharedSessionContractImplementor);
    descriptor: (Lorg/hibernate/engine/spi/SharedSessionContractImplementor;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hibernate.collection.internal.PersistentBag this
        start local 1 // org.hibernate.engine.spi.SharedSessionContractImplementor session
         0: .line 49
            aload 0 /* this */
            aload 1 /* session */
            invokespecial org.hibernate.collection.internal.AbstractPersistentCollection.<init>:(Lorg/hibernate/engine/spi/SharedSessionContractImplementor;)V
         1: .line 50
            return
        end local 1 // org.hibernate.engine.spi.SharedSessionContractImplementor session
        end local 0 // org.hibernate.collection.internal.PersistentBag this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/hibernate/collection/internal/PersistentBag;
            0    2     1  session  Lorg/hibernate/engine/spi/SharedSessionContractImplementor;
    MethodParameters:
         Name  Flags
      session  

  public void <init>(org.hibernate.engine.spi.SharedSessionContractImplementor, java.util.Collection);
    descriptor: (Lorg/hibernate/engine/spi/SharedSessionContractImplementor;Ljava/util/Collection;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=3
        start local 0 // org.hibernate.collection.internal.PersistentBag this
        start local 1 // org.hibernate.engine.spi.SharedSessionContractImplementor session
        start local 2 // java.util.Collection coll
         0: .line 60
            aload 0 /* this */
            aload 1 /* session */
            invokespecial org.hibernate.collection.internal.AbstractPersistentCollection.<init>:(Lorg/hibernate/engine/spi/SharedSessionContractImplementor;)V
         1: .line 61
            aload 2 /* coll */
            instanceof java.util.List
            ifeq 4
         2: .line 62
            aload 0 /* this */
            aload 2 /* coll */
            checkcast java.util.List
            putfield org.hibernate.collection.internal.PersistentBag.bag:Ljava/util/List;
         3: .line 63
            goto 9
         4: .line 65
      StackMap locals: org.hibernate.collection.internal.PersistentBag org.hibernate.engine.spi.SharedSessionContractImplementor java.util.Collection
      StackMap stack:
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield org.hibernate.collection.internal.PersistentBag.bag:Ljava/util/List;
         5: .line 66
            aload 2 /* coll */
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 4
            goto 8
      StackMap locals: org.hibernate.collection.internal.PersistentBag org.hibernate.engine.spi.SharedSessionContractImplementor java.util.Collection top java.util.Iterator
      StackMap stack:
         6: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            astore 3 /* element */
        start local 3 // java.lang.Object element
         7: .line 67
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentBag.bag:Ljava/util/List;
            aload 3 /* element */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        end local 3 // java.lang.Object element
         8: .line 66
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 6
         9: .line 70
      StackMap locals: org.hibernate.collection.internal.PersistentBag org.hibernate.engine.spi.SharedSessionContractImplementor java.util.Collection
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentBag.setInitialized:()V
        10: .line 71
            aload 0 /* this */
            iconst_1
            invokevirtual org.hibernate.collection.internal.PersistentBag.setDirectlyAccessible:(Z)V
        11: .line 72
            return
        end local 2 // java.util.Collection coll
        end local 1 // org.hibernate.engine.spi.SharedSessionContractImplementor session
        end local 0 // org.hibernate.collection.internal.PersistentBag this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   12     0     this  Lorg/hibernate/collection/internal/PersistentBag;
            0   12     1  session  Lorg/hibernate/engine/spi/SharedSessionContractImplementor;
            0   12     2     coll  Ljava/util/Collection;
            7    8     3  element  Ljava/lang/Object;
    MethodParameters:
         Name  Flags
      session  
      coll     

  public boolean isWrapper(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hibernate.collection.internal.PersistentBag this
        start local 1 // java.lang.Object collection
         0: .line 76
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentBag.bag:Ljava/util/List;
            aload 1 /* collection */
            if_acmpne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // java.lang.Object collection
        end local 0 // org.hibernate.collection.internal.PersistentBag this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lorg/hibernate/collection/internal/PersistentBag;
            0    2     1  collection  Ljava/lang/Object;
    MethodParameters:
            Name  Flags
      collection  

  public boolean empty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hibernate.collection.internal.PersistentBag this
         0: .line 81
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentBag.bag:Ljava/util/List;
            invokeinterface java.util.List.isEmpty:()Z
            ireturn
        end local 0 // org.hibernate.collection.internal.PersistentBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hibernate/collection/internal/PersistentBag;

  public java.util.Iterator entries(org.hibernate.persister.collection.CollectionPersister);
    descriptor: (Lorg/hibernate/persister/collection/CollectionPersister;)Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.hibernate.collection.internal.PersistentBag this
        start local 1 // org.hibernate.persister.collection.CollectionPersister persister
         0: .line 86
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentBag.bag:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            areturn
        end local 1 // org.hibernate.persister.collection.CollectionPersister persister
        end local 0 // org.hibernate.collection.internal.PersistentBag this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/hibernate/collection/internal/PersistentBag;
            0    1     1  persister  Lorg/hibernate/persister/collection/CollectionPersister;
    MethodParameters:
           Name  Flags
      persister  

  public java.lang.Object readFrom(java.sql.ResultSet, org.hibernate.persister.collection.CollectionPersister, org.hibernate.loader.CollectionAliases, java.lang.Object);
    descriptor: (Ljava/sql/ResultSet;Lorg/hibernate/persister/collection/CollectionPersister;Lorg/hibernate/loader/CollectionAliases;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=5
        start local 0 // org.hibernate.collection.internal.PersistentBag this
        start local 1 // java.sql.ResultSet rs
        start local 2 // org.hibernate.persister.collection.CollectionPersister persister
        start local 3 // org.hibernate.loader.CollectionAliases descriptor
        start local 4 // java.lang.Object owner
         0: .line 95
            aload 2 /* persister */
            aload 1 /* rs */
            aload 4 /* owner */
            aload 3 /* descriptor */
            invokeinterface org.hibernate.loader.CollectionAliases.getSuffixedElementAliases:()[Ljava/lang/String;
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentBag.getSession:()Lorg/hibernate/engine/spi/SharedSessionContractImplementor;
            invokeinterface org.hibernate.persister.collection.CollectionPersister.readElement:(Ljava/sql/ResultSet;Ljava/lang/Object;[Ljava/lang/String;Lorg/hibernate/engine/spi/SharedSessionContractImplementor;)Ljava/lang/Object;
            astore 5 /* element */
        start local 5 // java.lang.Object element
         1: .line 96
            aload 5 /* element */
            ifnull 3
         2: .line 97
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentBag.bag:Ljava/util/List;
            aload 5 /* element */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         3: .line 99
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 5 /* element */
            areturn
        end local 5 // java.lang.Object element
        end local 4 // java.lang.Object owner
        end local 3 // org.hibernate.loader.CollectionAliases descriptor
        end local 2 // org.hibernate.persister.collection.CollectionPersister persister
        end local 1 // java.sql.ResultSet rs
        end local 0 // org.hibernate.collection.internal.PersistentBag this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0        this  Lorg/hibernate/collection/internal/PersistentBag;
            0    4     1          rs  Ljava/sql/ResultSet;
            0    4     2   persister  Lorg/hibernate/persister/collection/CollectionPersister;
            0    4     3  descriptor  Lorg/hibernate/loader/CollectionAliases;
            0    4     4       owner  Ljava/lang/Object;
            1    4     5     element  Ljava/lang/Object;
    Exceptions:
      throws org.hibernate.HibernateException, java.sql.SQLException
    MethodParameters:
            Name  Flags
      rs          
      persister   
      descriptor  
      owner       

  public void beforeInitialize(org.hibernate.persister.collection.CollectionPersister, int);
    descriptor: (Lorg/hibernate/persister/collection/CollectionPersister;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.hibernate.collection.internal.PersistentBag this
        start local 1 // org.hibernate.persister.collection.CollectionPersister persister
        start local 2 // int anticipatedSize
         0: .line 104
            aload 0 /* this */
            aload 1 /* persister */
            invokeinterface org.hibernate.persister.collection.CollectionPersister.getCollectionType:()Lorg/hibernate/type/CollectionType;
            iload 2 /* anticipatedSize */
            invokevirtual org.hibernate.type.CollectionType.instantiate:(I)Ljava/lang/Object;
            checkcast java.util.List
            putfield org.hibernate.collection.internal.PersistentBag.bag:Ljava/util/List;
         1: .line 105
            return
        end local 2 // int anticipatedSize
        end local 1 // org.hibernate.persister.collection.CollectionPersister persister
        end local 0 // org.hibernate.collection.internal.PersistentBag this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    2     0             this  Lorg/hibernate/collection/internal/PersistentBag;
            0    2     1        persister  Lorg/hibernate/persister/collection/CollectionPersister;
            0    2     2  anticipatedSize  I
    MethodParameters:
                 Name  Flags
      persister        
      anticipatedSize  

  public boolean equalsSnapshot(org.hibernate.persister.collection.CollectionPersister);
    descriptor: (Lorg/hibernate/persister/collection/CollectionPersister;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=7, args_size=2
        start local 0 // org.hibernate.collection.internal.PersistentBag this
        start local 1 // org.hibernate.persister.collection.CollectionPersister persister
         0: .line 109
            aload 1 /* persister */
            invokeinterface org.hibernate.persister.collection.CollectionPersister.getElementType:()Lorg/hibernate/type/Type;
            astore 2 /* elementType */
        start local 2 // org.hibernate.type.Type elementType
         1: .line 110
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentBag.getSnapshot:()Ljava/io/Serializable;
            checkcast java.util.List
            astore 3 /* sn */
        start local 3 // java.util.List sn
         2: .line 111
            aload 3 /* sn */
            invokeinterface java.util.List.size:()I
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentBag.bag:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            if_icmpeq 4
         3: .line 112
            iconst_0
            ireturn
         4: .line 114
      StackMap locals: org.hibernate.type.Type java.util.List
      StackMap stack:
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentBag.bag:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 5
            goto 11
      StackMap locals: org.hibernate.collection.internal.PersistentBag org.hibernate.persister.collection.CollectionPersister org.hibernate.type.Type java.util.List top java.util.Iterator
      StackMap stack:
         5: aload 5
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            astore 4 /* elt */
        start local 4 // java.lang.Object elt
         6: .line 115
            aload 0 /* this */
            aload 4 /* elt */
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentBag.bag:Ljava/util/List;
            aload 2 /* elementType */
            invokevirtual org.hibernate.collection.internal.PersistentBag.countOccurrences:(Ljava/lang/Object;Ljava/util/List;Lorg/hibernate/type/Type;)I
            aload 0 /* this */
            aload 4 /* elt */
            aload 3 /* sn */
            aload 2 /* elementType */
            invokevirtual org.hibernate.collection.internal.PersistentBag.countOccurrences:(Ljava/lang/Object;Ljava/util/List;Lorg/hibernate/type/Type;)I
            if_icmpeq 7
            iconst_1
            goto 8
      StackMap locals: org.hibernate.collection.internal.PersistentBag org.hibernate.persister.collection.CollectionPersister org.hibernate.type.Type java.util.List java.lang.Object java.util.Iterator
      StackMap stack:
         7: iconst_0
      StackMap locals:
      StackMap stack: int
         8: istore 6 /* unequal */
        start local 6 // boolean unequal
         9: .line 116
            iload 6 /* unequal */
            ifeq 11
        10: .line 117
            iconst_0
            ireturn
        end local 6 // boolean unequal
        end local 4 // java.lang.Object elt
        11: .line 114
      StackMap locals: org.hibernate.collection.internal.PersistentBag org.hibernate.persister.collection.CollectionPersister org.hibernate.type.Type java.util.List top java.util.Iterator
      StackMap stack:
            aload 5
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 5
        12: .line 120
            iconst_1
            ireturn
        end local 3 // java.util.List sn
        end local 2 // org.hibernate.type.Type elementType
        end local 1 // org.hibernate.persister.collection.CollectionPersister persister
        end local 0 // org.hibernate.collection.internal.PersistentBag this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   13     0         this  Lorg/hibernate/collection/internal/PersistentBag;
            0   13     1    persister  Lorg/hibernate/persister/collection/CollectionPersister;
            1   13     2  elementType  Lorg/hibernate/type/Type;
            2   13     3           sn  Ljava/util/List;
            6   11     4          elt  Ljava/lang/Object;
            9   11     6      unequal  Z
    Exceptions:
      throws org.hibernate.HibernateException
    MethodParameters:
           Name  Flags
      persister  

  public boolean isSnapshotEmpty(java.io.Serializable);
    descriptor: (Ljava/io/Serializable;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.hibernate.collection.internal.PersistentBag this
        start local 1 // java.io.Serializable snapshot
         0: .line 125
            aload 1 /* snapshot */
            checkcast java.util.Collection
            invokeinterface java.util.Collection.isEmpty:()Z
            ireturn
        end local 1 // java.io.Serializable snapshot
        end local 0 // org.hibernate.collection.internal.PersistentBag this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/hibernate/collection/internal/PersistentBag;
            0    1     1  snapshot  Ljava/io/Serializable;
    MethodParameters:
          Name  Flags
      snapshot  

  private int countOccurrences(java.lang.Object, java.util.List, org.hibernate.type.Type);
    descriptor: (Ljava/lang/Object;Ljava/util/List;Lorg/hibernate/type/Type;)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=6, args_size=4
        start local 0 // org.hibernate.collection.internal.PersistentBag this
        start local 1 // java.lang.Object element
        start local 2 // java.util.List list
        start local 3 // org.hibernate.type.Type elementType
         0: .line 130
            aload 2 /* list */
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 4 /* iter */
        start local 4 // java.util.Iterator iter
         1: .line 131
            iconst_0
            istore 5 /* result */
        start local 5 // int result
         2: .line 132
            goto 5
         3: .line 133
      StackMap locals: java.util.Iterator int
      StackMap stack:
            aload 3 /* elementType */
            aload 1 /* element */
            aload 4 /* iter */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            invokeinterface org.hibernate.type.Type.isSame:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 5
         4: .line 134
            iinc 5 /* result */ 1
         5: .line 132
      StackMap locals:
      StackMap stack:
            aload 4 /* iter */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         6: .line 137
            iload 5 /* result */
            ireturn
        end local 5 // int result
        end local 4 // java.util.Iterator iter
        end local 3 // org.hibernate.type.Type elementType
        end local 2 // java.util.List list
        end local 1 // java.lang.Object element
        end local 0 // org.hibernate.collection.internal.PersistentBag this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    7     0         this  Lorg/hibernate/collection/internal/PersistentBag;
            0    7     1      element  Ljava/lang/Object;
            0    7     2         list  Ljava/util/List;
            0    7     3  elementType  Lorg/hibernate/type/Type;
            1    7     4         iter  Ljava/util/Iterator;
            2    7     5       result  I
    Exceptions:
      throws org.hibernate.HibernateException
    MethodParameters:
             Name  Flags
      element      
      list         
      elementType  

  public java.io.Serializable getSnapshot(org.hibernate.persister.collection.CollectionPersister);
    descriptor: (Lorg/hibernate/persister/collection/CollectionPersister;)Ljava/io/Serializable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // org.hibernate.collection.internal.PersistentBag this
        start local 1 // org.hibernate.persister.collection.CollectionPersister persister
         0: .line 144
            new java.util.ArrayList
            dup
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentBag.bag:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            invokespecial java.util.ArrayList.<init>:(I)V
            astore 2 /* clonedList */
        start local 2 // java.util.ArrayList clonedList
         1: .line 145
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentBag.bag:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 4
            goto 4
      StackMap locals: org.hibernate.collection.internal.PersistentBag org.hibernate.persister.collection.CollectionPersister java.util.ArrayList top java.util.Iterator
      StackMap stack:
         2: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            astore 3 /* item */
        start local 3 // java.lang.Object item
         3: .line 146
            aload 2 /* clonedList */
            aload 1 /* persister */
            invokeinterface org.hibernate.persister.collection.CollectionPersister.getElementType:()Lorg/hibernate/type/Type;
            aload 3 /* item */
            aload 1 /* persister */
            invokeinterface org.hibernate.persister.collection.CollectionPersister.getFactory:()Lorg/hibernate/engine/spi/SessionFactoryImplementor;
            invokeinterface org.hibernate.type.Type.deepCopy:(Ljava/lang/Object;Lorg/hibernate/engine/spi/SessionFactoryImplementor;)Ljava/lang/Object;
            invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            pop
        end local 3 // java.lang.Object item
         4: .line 145
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 148
            aload 2 /* clonedList */
            areturn
        end local 2 // java.util.ArrayList clonedList
        end local 1 // org.hibernate.persister.collection.CollectionPersister persister
        end local 0 // org.hibernate.collection.internal.PersistentBag this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    6     0        this  Lorg/hibernate/collection/internal/PersistentBag;
            0    6     1   persister  Lorg/hibernate/persister/collection/CollectionPersister;
            1    6     2  clonedList  Ljava/util/ArrayList;
            3    4     3        item  Ljava/lang/Object;
    Exceptions:
      throws org.hibernate.HibernateException
    MethodParameters:
           Name  Flags
      persister  

  public java.util.Collection getOrphans(java.io.Serializable, java.lang.String);
    descriptor: (Ljava/io/Serializable;Ljava/lang/String;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.hibernate.collection.internal.PersistentBag this
        start local 1 // java.io.Serializable snapshot
        start local 2 // java.lang.String entityName
         0: .line 153
            aload 1 /* snapshot */
            checkcast java.util.List
            astore 3 /* sn */
        start local 3 // java.util.List sn
         1: .line 154
            aload 3 /* sn */
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentBag.bag:Ljava/util/List;
            aload 2 /* entityName */
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentBag.getSession:()Lorg/hibernate/engine/spi/SharedSessionContractImplementor;
            invokestatic org.hibernate.collection.internal.PersistentBag.getOrphans:(Ljava/util/Collection;Ljava/util/Collection;Ljava/lang/String;Lorg/hibernate/engine/spi/SharedSessionContractImplementor;)Ljava/util/Collection;
            areturn
        end local 3 // java.util.List sn
        end local 2 // java.lang.String entityName
        end local 1 // java.io.Serializable snapshot
        end local 0 // org.hibernate.collection.internal.PersistentBag this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lorg/hibernate/collection/internal/PersistentBag;
            0    2     1    snapshot  Ljava/io/Serializable;
            0    2     2  entityName  Ljava/lang/String;
            1    2     3          sn  Ljava/util/List;
    Exceptions:
      throws org.hibernate.HibernateException
    MethodParameters:
            Name  Flags
      snapshot    
      entityName  

  public java.io.Serializable disassemble(org.hibernate.persister.collection.CollectionPersister);
    descriptor: (Lorg/hibernate/persister/collection/CollectionPersister;)Ljava/io/Serializable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=2
        start local 0 // org.hibernate.collection.internal.PersistentBag this
        start local 1 // org.hibernate.persister.collection.CollectionPersister persister
         0: .line 160
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentBag.bag:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            istore 2 /* length */
        start local 2 // int length
         1: .line 161
            iload 2 /* length */
            anewarray java.io.Serializable
            astore 3 /* result */
        start local 3 // java.io.Serializable[] result
         2: .line 162
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         3: goto 6
         4: .line 163
      StackMap locals: int java.io.Serializable[] int
      StackMap stack:
            aload 3 /* result */
            iload 4 /* i */
            aload 1 /* persister */
            invokeinterface org.hibernate.persister.collection.CollectionPersister.getElementType:()Lorg/hibernate/type/Type;
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentBag.bag:Ljava/util/List;
            iload 4 /* i */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentBag.getSession:()Lorg/hibernate/engine/spi/SharedSessionContractImplementor;
            aconst_null
            invokeinterface org.hibernate.type.Type.disassemble:(Ljava/lang/Object;Lorg/hibernate/engine/spi/SharedSessionContractImplementor;Ljava/lang/Object;)Ljava/io/Serializable;
            aastore
         5: .line 162
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 4 /* i */
            iload 2 /* length */
            if_icmplt 4
        end local 4 // int i
         7: .line 165
            aload 3 /* result */
            areturn
        end local 3 // java.io.Serializable[] result
        end local 2 // int length
        end local 1 // org.hibernate.persister.collection.CollectionPersister persister
        end local 0 // org.hibernate.collection.internal.PersistentBag this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    8     0       this  Lorg/hibernate/collection/internal/PersistentBag;
            0    8     1  persister  Lorg/hibernate/persister/collection/CollectionPersister;
            1    8     2     length  I
            2    8     3     result  [Ljava/io/Serializable;
            3    7     4          i  I
    Exceptions:
      throws org.hibernate.HibernateException
    MethodParameters:
           Name  Flags
      persister  

  public void initializeFromCache(org.hibernate.persister.collection.CollectionPersister, java.io.Serializable, java.lang.Object);
    descriptor: (Lorg/hibernate/persister/collection/CollectionPersister;Ljava/io/Serializable;Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=11, args_size=4
        start local 0 // org.hibernate.collection.internal.PersistentBag this
        start local 1 // org.hibernate.persister.collection.CollectionPersister persister
        start local 2 // java.io.Serializable disassembled
        start local 3 // java.lang.Object owner
         0: .line 172
            aload 2 /* disassembled */
            checkcast java.io.Serializable[]
            astore 4 /* array */
        start local 4 // java.io.Serializable[] array
         1: .line 173
            aload 4 /* array */
            arraylength
            istore 5 /* size */
        start local 5 // int size
         2: .line 174
            aload 0 /* this */
            aload 1 /* persister */
            iload 5 /* size */
            invokevirtual org.hibernate.collection.internal.PersistentBag.beforeInitialize:(Lorg/hibernate/persister/collection/CollectionPersister;I)V
         3: .line 175
            aload 4 /* array */
            dup
            astore 9
            arraylength
            istore 8
            iconst_0
            istore 7
            goto 9
      StackMap locals: org.hibernate.collection.internal.PersistentBag org.hibernate.persister.collection.CollectionPersister java.io.Serializable java.lang.Object java.io.Serializable[] int top int int java.io.Serializable[]
      StackMap stack:
         4: aload 9
            iload 7
            aaload
            astore 6 /* item */
        start local 6 // java.io.Serializable item
         5: .line 176
            aload 1 /* persister */
            invokeinterface org.hibernate.persister.collection.CollectionPersister.getElementType:()Lorg/hibernate/type/Type;
            aload 6 /* item */
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentBag.getSession:()Lorg/hibernate/engine/spi/SharedSessionContractImplementor;
            aload 3 /* owner */
            invokeinterface org.hibernate.type.Type.assemble:(Ljava/io/Serializable;Lorg/hibernate/engine/spi/SharedSessionContractImplementor;Ljava/lang/Object;)Ljava/lang/Object;
            astore 10 /* element */
        start local 10 // java.lang.Object element
         6: .line 177
            aload 10 /* element */
            ifnull 8
         7: .line 178
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentBag.bag:Ljava/util/List;
            aload 10 /* element */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        end local 10 // java.lang.Object element
        end local 6 // java.io.Serializable item
         8: .line 175
      StackMap locals:
      StackMap stack:
            iinc 7 1
      StackMap locals:
      StackMap stack:
         9: iload 7
            iload 8
            if_icmplt 4
        10: .line 181
            return
        end local 5 // int size
        end local 4 // java.io.Serializable[] array
        end local 3 // java.lang.Object owner
        end local 2 // java.io.Serializable disassembled
        end local 1 // org.hibernate.persister.collection.CollectionPersister persister
        end local 0 // org.hibernate.collection.internal.PersistentBag this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   11     0          this  Lorg/hibernate/collection/internal/PersistentBag;
            0   11     1     persister  Lorg/hibernate/persister/collection/CollectionPersister;
            0   11     2  disassembled  Ljava/io/Serializable;
            0   11     3         owner  Ljava/lang/Object;
            1   11     4         array  [Ljava/io/Serializable;
            2   11     5          size  I
            5    8     6          item  Ljava/io/Serializable;
            6    8    10       element  Ljava/lang/Object;
    Exceptions:
      throws org.hibernate.HibernateException
    MethodParameters:
              Name  Flags
      persister     
      disassembled  
      owner         

  public boolean needsRecreate(org.hibernate.persister.collection.CollectionPersister);
    descriptor: (Lorg/hibernate/persister/collection/CollectionPersister;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.hibernate.collection.internal.PersistentBag this
        start local 1 // org.hibernate.persister.collection.CollectionPersister persister
         0: .line 185
            aload 1 /* persister */
            invokeinterface org.hibernate.persister.collection.CollectionPersister.isOneToMany:()Z
            ifeq 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_1
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 1 // org.hibernate.persister.collection.CollectionPersister persister
        end local 0 // org.hibernate.collection.internal.PersistentBag this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lorg/hibernate/collection/internal/PersistentBag;
            0    3     1  persister  Lorg/hibernate/persister/collection/CollectionPersister;
    MethodParameters:
           Name  Flags
      persister  

  public java.util.Iterator getDeletes(org.hibernate.persister.collection.CollectionPersister, boolean);
    descriptor: (Lorg/hibernate/persister/collection/CollectionPersister;Z)Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=11, args_size=3
        start local 0 // org.hibernate.collection.internal.PersistentBag this
        start local 1 // org.hibernate.persister.collection.CollectionPersister persister
        start local 2 // boolean indexIsFormula
         0: .line 200
            aload 1 /* persister */
            invokeinterface org.hibernate.persister.collection.CollectionPersister.getElementType:()Lorg/hibernate/type/Type;
            astore 3 /* elementType */
        start local 3 // org.hibernate.type.Type elementType
         1: .line 201
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 4 /* deletes */
        start local 4 // java.util.ArrayList deletes
         2: .line 202
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentBag.getSnapshot:()Ljava/io/Serializable;
            checkcast java.util.List
            astore 5 /* sn */
        start local 5 // java.util.List sn
         3: .line 203
            aload 5 /* sn */
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 6 /* olditer */
        start local 6 // java.util.Iterator olditer
         4: .line 204
            iconst_0
            istore 7 /* i */
        start local 7 // int i
         5: .line 205
            goto 18
         6: .line 206
      StackMap locals: org.hibernate.collection.internal.PersistentBag org.hibernate.persister.collection.CollectionPersister int org.hibernate.type.Type java.util.ArrayList java.util.List java.util.Iterator int
      StackMap stack:
            aload 6 /* olditer */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            astore 8 /* old */
        start local 8 // java.lang.Object old
         7: .line 207
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentBag.bag:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 9 /* newiter */
        start local 9 // java.util.Iterator newiter
         8: .line 208
            iconst_0
            istore 10 /* found */
        start local 10 // boolean found
         9: .line 209
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentBag.bag:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            iload 7 /* i */
            if_icmple 15
            aload 3 /* elementType */
            aload 8 /* old */
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentBag.bag:Ljava/util/List;
            iload 7 /* i */
            iinc 7 /* i */ 1
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            invokeinterface org.hibernate.type.Type.isSame:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 15
        10: .line 211
            iconst_1
            istore 10 /* found */
        11: .line 212
            goto 16
        12: .line 217
      StackMap locals: java.lang.Object java.util.Iterator int
      StackMap stack:
            aload 3 /* elementType */
            aload 8 /* old */
            aload 9 /* newiter */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            invokeinterface org.hibernate.type.Type.isSame:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 15
        13: .line 218
            iconst_1
            istore 10 /* found */
        14: .line 219
            goto 16
        15: .line 216
      StackMap locals:
      StackMap stack:
            aload 9 /* newiter */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 12
        16: .line 223
      StackMap locals:
      StackMap stack:
            iload 10 /* found */
            ifne 18
        17: .line 224
            aload 4 /* deletes */
            aload 8 /* old */
            invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            pop
        end local 10 // boolean found
        end local 9 // java.util.Iterator newiter
        end local 8 // java.lang.Object old
        18: .line 205
      StackMap locals:
      StackMap stack:
            aload 6 /* olditer */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 6
        19: .line 227
            aload 4 /* deletes */
            invokevirtual java.util.ArrayList.iterator:()Ljava/util/Iterator;
            areturn
        end local 7 // int i
        end local 6 // java.util.Iterator olditer
        end local 5 // java.util.List sn
        end local 4 // java.util.ArrayList deletes
        end local 3 // org.hibernate.type.Type elementType
        end local 2 // boolean indexIsFormula
        end local 1 // org.hibernate.persister.collection.CollectionPersister persister
        end local 0 // org.hibernate.collection.internal.PersistentBag this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   20     0            this  Lorg/hibernate/collection/internal/PersistentBag;
            0   20     1       persister  Lorg/hibernate/persister/collection/CollectionPersister;
            0   20     2  indexIsFormula  Z
            1   20     3     elementType  Lorg/hibernate/type/Type;
            2   20     4         deletes  Ljava/util/ArrayList;
            3   20     5              sn  Ljava/util/List;
            4   20     6         olditer  Ljava/util/Iterator;
            5   20     7               i  I
            7   18     8             old  Ljava/lang/Object;
            8   18     9         newiter  Ljava/util/Iterator;
            9   18    10           found  Z
    Exceptions:
      throws org.hibernate.HibernateException
    MethodParameters:
                Name  Flags
      persister       
      indexIsFormula  

  public boolean needsInserting(java.lang.Object, int, org.hibernate.type.Type);
    descriptor: (Ljava/lang/Object;ILorg/hibernate/type/Type;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=7, args_size=4
        start local 0 // org.hibernate.collection.internal.PersistentBag this
        start local 1 // java.lang.Object entry
        start local 2 // int i
        start local 3 // org.hibernate.type.Type elemType
         0: .line 232
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentBag.getSnapshot:()Ljava/io/Serializable;
            checkcast java.util.List
            astore 4 /* sn */
        start local 4 // java.util.List sn
         1: .line 233
            aload 4 /* sn */
            invokeinterface java.util.List.size:()I
            iload 2 /* i */
            if_icmple 3
            aload 3 /* elemType */
            aload 4 /* sn */
            iload 2 /* i */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            aload 1 /* entry */
            invokeinterface org.hibernate.type.Type.isSame:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 3
         2: .line 235
            iconst_0
            ireturn
         3: .line 240
      StackMap locals: java.util.List
      StackMap stack:
            aload 4 /* sn */
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 6
            goto 7
      StackMap locals: org.hibernate.collection.internal.PersistentBag java.lang.Object int org.hibernate.type.Type java.util.List top java.util.Iterator
      StackMap stack:
         4: aload 6
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            astore 5 /* old */
        start local 5 // java.lang.Object old
         5: .line 241
            aload 3 /* elemType */
            aload 5 /* old */
            aload 1 /* entry */
            invokeinterface org.hibernate.type.Type.isSame:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 7
         6: .line 242
            iconst_0
            ireturn
        end local 5 // java.lang.Object old
         7: .line 240
      StackMap locals:
      StackMap stack:
            aload 6
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 4
         8: .line 245
            iconst_1
            ireturn
        end local 4 // java.util.List sn
        end local 3 // org.hibernate.type.Type elemType
        end local 2 // int i
        end local 1 // java.lang.Object entry
        end local 0 // org.hibernate.collection.internal.PersistentBag this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    9     0      this  Lorg/hibernate/collection/internal/PersistentBag;
            0    9     1     entry  Ljava/lang/Object;
            0    9     2         i  I
            0    9     3  elemType  Lorg/hibernate/type/Type;
            1    9     4        sn  Ljava/util/List;
            5    7     5       old  Ljava/lang/Object;
    Exceptions:
      throws org.hibernate.HibernateException
    MethodParameters:
          Name  Flags
      entry     
      i         
      elemType  

  public boolean isRowUpdatePossible();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hibernate.collection.internal.PersistentBag this
         0: .line 251
            iconst_0
            ireturn
        end local 0 // org.hibernate.collection.internal.PersistentBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hibernate/collection/internal/PersistentBag;

  public boolean needsUpdating(java.lang.Object, int, org.hibernate.type.Type);
    descriptor: (Ljava/lang/Object;ILorg/hibernate/type/Type;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=4, args_size=4
        start local 0 // org.hibernate.collection.internal.PersistentBag this
        start local 1 // java.lang.Object entry
        start local 2 // int i
        start local 3 // org.hibernate.type.Type elemType
         0: .line 256
            iconst_0
            ireturn
        end local 3 // org.hibernate.type.Type elemType
        end local 2 // int i
        end local 1 // java.lang.Object entry
        end local 0 // org.hibernate.collection.internal.PersistentBag this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/hibernate/collection/internal/PersistentBag;
            0    1     1     entry  Ljava/lang/Object;
            0    1     2         i  I
            0    1     3  elemType  Lorg/hibernate/type/Type;
    MethodParameters:
          Name  Flags
      entry     
      i         
      elemType  

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hibernate.collection.internal.PersistentBag this
         0: .line 261
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentBag.readSize:()Z
            ifeq 1
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentBag.getCachedSize:()I
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentBag.bag:Ljava/util/List;
            invokeinterface java.util.List.size:()I
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 0 // org.hibernate.collection.internal.PersistentBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/hibernate/collection/internal/PersistentBag;

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hibernate.collection.internal.PersistentBag this
         0: .line 266
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentBag.readSize:()Z
            ifeq 2
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentBag.getCachedSize:()I
            ifne 1
            iconst_1
            goto 3
      StackMap locals:
      StackMap stack:
         1: iconst_0
            goto 3
      StackMap locals:
      StackMap stack:
         2: aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentBag.bag:Ljava/util/List;
            invokeinterface java.util.List.isEmpty:()Z
      StackMap locals:
      StackMap stack: int
         3: ireturn
        end local 0 // org.hibernate.collection.internal.PersistentBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/hibernate/collection/internal/PersistentBag;

  public boolean contains(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.collection.internal.PersistentBag this
        start local 1 // java.lang.Object object
         0: .line 271
            aload 0 /* this */
            aload 1 /* object */
            invokevirtual org.hibernate.collection.internal.PersistentBag.readElementExistence:(Ljava/lang/Object;)Ljava/lang/Boolean;
            astore 2 /* exists */
        start local 2 // java.lang.Boolean exists
         1: .line 272
            aload 2 /* exists */
            ifnonnull 2
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentBag.bag:Ljava/util/List;
            aload 1 /* object */
            invokeinterface java.util.List.contains:(Ljava/lang/Object;)Z
            goto 3
      StackMap locals: java.lang.Boolean
      StackMap stack:
         2: aload 2 /* exists */
            invokevirtual java.lang.Boolean.booleanValue:()Z
      StackMap locals:
      StackMap stack: int
         3: ireturn
        end local 2 // java.lang.Boolean exists
        end local 1 // java.lang.Object object
        end local 0 // org.hibernate.collection.internal.PersistentBag this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lorg/hibernate/collection/internal/PersistentBag;
            0    4     1  object  Ljava/lang/Object;
            1    4     2  exists  Ljava/lang/Boolean;
    MethodParameters:
        Name  Flags
      object  

  public java.util.Iterator iterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.hibernate.collection.internal.PersistentBag this
         0: .line 277
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentBag.read:()V
         1: .line 278
            new org.hibernate.collection.internal.AbstractPersistentCollection$IteratorProxy
            dup
            aload 0 /* this */
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentBag.bag:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            invokespecial org.hibernate.collection.internal.AbstractPersistentCollection$IteratorProxy.<init>:(Lorg/hibernate/collection/internal/AbstractPersistentCollection;Ljava/util/Iterator;)V
            areturn
        end local 0 // org.hibernate.collection.internal.PersistentBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/hibernate/collection/internal/PersistentBag;

  public java.lang.Object[] toArray();
    descriptor: ()[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hibernate.collection.internal.PersistentBag this
         0: .line 283
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentBag.read:()V
         1: .line 284
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentBag.bag:Ljava/util/List;
            invokeinterface java.util.List.toArray:()[Ljava/lang/Object;
            areturn
        end local 0 // org.hibernate.collection.internal.PersistentBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/hibernate/collection/internal/PersistentBag;

  public java.lang.Object[] toArray(java.lang.Object[]);
    descriptor: ([Ljava/lang/Object;)[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hibernate.collection.internal.PersistentBag this
        start local 1 // java.lang.Object[] a
         0: .line 289
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentBag.read:()V
         1: .line 290
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentBag.bag:Ljava/util/List;
            aload 1 /* a */
            invokeinterface java.util.List.toArray:([Ljava/lang/Object;)[Ljava/lang/Object;
            areturn
        end local 1 // java.lang.Object[] a
        end local 0 // org.hibernate.collection.internal.PersistentBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/hibernate/collection/internal/PersistentBag;
            0    2     1     a  [Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      a     

  public boolean add(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.hibernate.collection.internal.PersistentBag this
        start local 1 // java.lang.Object object
         0: .line 296
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentBag.isOperationQueueEnabled:()Z
            ifne 3
         1: .line 297
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentBag.write:()V
         2: .line 298
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentBag.bag:Ljava/util/List;
            aload 1 /* object */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            ireturn
         3: .line 301
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            new org.hibernate.collection.internal.PersistentBag$SimpleAdd
            dup
            aload 0 /* this */
            aload 1 /* object */
            invokespecial org.hibernate.collection.internal.PersistentBag$SimpleAdd.<init>:(Lorg/hibernate/collection/internal/PersistentBag;Ljava/lang/Object;)V
            invokevirtual org.hibernate.collection.internal.PersistentBag.queueOperation:(Lorg/hibernate/collection/internal/AbstractPersistentCollection$DelayedOperation;)V
         4: .line 302
            iconst_1
            ireturn
        end local 1 // java.lang.Object object
        end local 0 // org.hibernate.collection.internal.PersistentBag this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lorg/hibernate/collection/internal/PersistentBag;
            0    5     1  object  Ljava/lang/Object;
    MethodParameters:
        Name  Flags
      object  

  public boolean remove(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hibernate.collection.internal.PersistentBag this
        start local 1 // java.lang.Object o
         0: .line 308
            aload 0 /* this */
            iconst_1
            invokevirtual org.hibernate.collection.internal.PersistentBag.initialize:(Z)V
         1: .line 309
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentBag.bag:Ljava/util/List;
            aload 1 /* o */
            invokeinterface java.util.List.remove:(Ljava/lang/Object;)Z
            ifeq 5
         2: .line 310
            aload 0 /* this */
            iconst_1
            putfield org.hibernate.collection.internal.PersistentBag.elementRemoved:Z
         3: .line 311
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentBag.dirty:()V
         4: .line 312
            iconst_1
            ireturn
         5: .line 315
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // java.lang.Object o
        end local 0 // org.hibernate.collection.internal.PersistentBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/hibernate/collection/internal/PersistentBag;
            0    6     1     o  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      o     

  public boolean containsAll(java.util.Collection);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hibernate.collection.internal.PersistentBag this
        start local 1 // java.util.Collection c
         0: .line 322
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentBag.read:()V
         1: .line 323
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentBag.bag:Ljava/util/List;
            aload 1 /* c */
            invokeinterface java.util.List.containsAll:(Ljava/util/Collection;)Z
            ireturn
        end local 1 // java.util.Collection c
        end local 0 // org.hibernate.collection.internal.PersistentBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/hibernate/collection/internal/PersistentBag;
            0    2     1     c  Ljava/util/Collection;
    MethodParameters:
      Name  Flags
      c     

  public boolean addAll(java.util.Collection);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // org.hibernate.collection.internal.PersistentBag this
        start local 1 // java.util.Collection values
         0: .line 329
            aload 1 /* values */
            invokeinterface java.util.Collection.size:()I
            ifne 2
         1: .line 330
            iconst_0
            ireturn
         2: .line 332
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentBag.isOperationQueueEnabled:()Z
            ifne 5
         3: .line 333
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentBag.write:()V
         4: .line 334
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentBag.bag:Ljava/util/List;
            aload 1 /* values */
            invokeinterface java.util.List.addAll:(Ljava/util/Collection;)Z
            ireturn
         5: .line 337
      StackMap locals:
      StackMap stack:
            aload 1 /* values */
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 3
            goto 8
      StackMap locals: org.hibernate.collection.internal.PersistentBag java.util.Collection top java.util.Iterator
      StackMap stack:
         6: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            astore 2 /* value */
        start local 2 // java.lang.Object value
         7: .line 338
            aload 0 /* this */
            new org.hibernate.collection.internal.PersistentBag$SimpleAdd
            dup
            aload 0 /* this */
            aload 2 /* value */
            invokespecial org.hibernate.collection.internal.PersistentBag$SimpleAdd.<init>:(Lorg/hibernate/collection/internal/PersistentBag;Ljava/lang/Object;)V
            invokevirtual org.hibernate.collection.internal.PersistentBag.queueOperation:(Lorg/hibernate/collection/internal/AbstractPersistentCollection$DelayedOperation;)V
        end local 2 // java.lang.Object value
         8: .line 337
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 6
         9: .line 340
            aload 1 /* values */
            invokeinterface java.util.Collection.size:()I
            ifle 10
            iconst_1
            ireturn
      StackMap locals: org.hibernate.collection.internal.PersistentBag java.util.Collection
      StackMap stack:
        10: iconst_0
            ireturn
        end local 1 // java.util.Collection values
        end local 0 // org.hibernate.collection.internal.PersistentBag this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   11     0    this  Lorg/hibernate/collection/internal/PersistentBag;
            0   11     1  values  Ljava/util/Collection;
            7    8     2   value  Ljava/lang/Object;
    MethodParameters:
        Name  Flags
      values  

  public boolean removeAll(java.util.Collection);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hibernate.collection.internal.PersistentBag this
        start local 1 // java.util.Collection c
         0: .line 347
            aload 1 /* c */
            invokeinterface java.util.Collection.size:()I
            ifle 7
         1: .line 348
            aload 0 /* this */
            iconst_1
            invokevirtual org.hibernate.collection.internal.PersistentBag.initialize:(Z)V
         2: .line 349
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentBag.bag:Ljava/util/List;
            aload 1 /* c */
            invokeinterface java.util.List.removeAll:(Ljava/util/Collection;)Z
            ifeq 6
         3: .line 350
            aload 0 /* this */
            iconst_1
            putfield org.hibernate.collection.internal.PersistentBag.elementRemoved:Z
         4: .line 351
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentBag.dirty:()V
         5: .line 352
            iconst_1
            ireturn
         6: .line 355
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
         7: .line 359
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // java.util.Collection c
        end local 0 // org.hibernate.collection.internal.PersistentBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lorg/hibernate/collection/internal/PersistentBag;
            0    8     1     c  Ljava/util/Collection;
    MethodParameters:
      Name  Flags
      c     

  public boolean retainAll(java.util.Collection);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hibernate.collection.internal.PersistentBag this
        start local 1 // java.util.Collection c
         0: .line 366
            aload 0 /* this */
            iconst_1
            invokevirtual org.hibernate.collection.internal.PersistentBag.initialize:(Z)V
         1: .line 367
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentBag.bag:Ljava/util/List;
            aload 1 /* c */
            invokeinterface java.util.List.retainAll:(Ljava/util/Collection;)Z
            ifeq 4
         2: .line 368
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentBag.dirty:()V
         3: .line 369
            iconst_1
            ireturn
         4: .line 372
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // java.util.Collection c
        end local 0 // org.hibernate.collection.internal.PersistentBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/hibernate/collection/internal/PersistentBag;
            0    5     1     c  Ljava/util/Collection;
    MethodParameters:
      Name  Flags
      c     

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.hibernate.collection.internal.PersistentBag this
         0: .line 379
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentBag.isClearQueueEnabled:()Z
            ifeq 3
         1: .line 380
            aload 0 /* this */
            new org.hibernate.collection.internal.PersistentBag$Clear
            dup
            aload 0 /* this */
            invokespecial org.hibernate.collection.internal.PersistentBag$Clear.<init>:(Lorg/hibernate/collection/internal/PersistentBag;)V
            invokevirtual org.hibernate.collection.internal.PersistentBag.queueOperation:(Lorg/hibernate/collection/internal/AbstractPersistentCollection$DelayedOperation;)V
         2: .line 381
            goto 7
         3: .line 383
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            invokevirtual org.hibernate.collection.internal.PersistentBag.initialize:(Z)V
         4: .line 384
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentBag.bag:Ljava/util/List;
            invokeinterface java.util.List.isEmpty:()Z
            ifne 7
         5: .line 385
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentBag.bag:Ljava/util/List;
            invokeinterface java.util.List.clear:()V
         6: .line 386
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentBag.dirty:()V
         7: .line 389
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.hibernate.collection.internal.PersistentBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lorg/hibernate/collection/internal/PersistentBag;

  public java.lang.Object getIndex(java.lang.Object, int, org.hibernate.persister.collection.CollectionPersister);
    descriptor: (Ljava/lang/Object;ILorg/hibernate/persister/collection/CollectionPersister;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // org.hibernate.collection.internal.PersistentBag this
        start local 1 // java.lang.Object entry
        start local 2 // int i
        start local 3 // org.hibernate.persister.collection.CollectionPersister persister
         0: .line 393
            new java.lang.UnsupportedOperationException
            dup
            ldc "Bags don't have indexes"
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 3 // org.hibernate.persister.collection.CollectionPersister persister
        end local 2 // int i
        end local 1 // java.lang.Object entry
        end local 0 // org.hibernate.collection.internal.PersistentBag this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/hibernate/collection/internal/PersistentBag;
            0    1     1      entry  Ljava/lang/Object;
            0    1     2          i  I
            0    1     3  persister  Lorg/hibernate/persister/collection/CollectionPersister;
    MethodParameters:
           Name  Flags
      entry      
      i          
      persister  

  public java.lang.Object getElement(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.hibernate.collection.internal.PersistentBag this
        start local 1 // java.lang.Object entry
         0: .line 398
            aload 1 /* entry */
            areturn
        end local 1 // java.lang.Object entry
        end local 0 // org.hibernate.collection.internal.PersistentBag this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/hibernate/collection/internal/PersistentBag;
            0    1     1  entry  Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      entry  

  public java.lang.Object getSnapshotElement(java.lang.Object, int);
    descriptor: (Ljava/lang/Object;I)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // org.hibernate.collection.internal.PersistentBag this
        start local 1 // java.lang.Object entry
        start local 2 // int i
         0: .line 403
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentBag.getSnapshot:()Ljava/io/Serializable;
            checkcast java.util.List
            astore 3 /* sn */
        start local 3 // java.util.List sn
         1: .line 404
            aload 3 /* sn */
            iload 2 /* i */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            areturn
        end local 3 // java.util.List sn
        end local 2 // int i
        end local 1 // java.lang.Object entry
        end local 0 // org.hibernate.collection.internal.PersistentBag this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/hibernate/collection/internal/PersistentBag;
            0    2     1  entry  Ljava/lang/Object;
            0    2     2      i  I
            1    2     3     sn  Ljava/util/List;
    MethodParameters:
       Name  Flags
      entry  
      i      

  public int occurrences(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.hibernate.collection.internal.PersistentBag this
        start local 1 // java.lang.Object o
         0: .line 416
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentBag.read:()V
         1: .line 417
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentBag.bag:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 2 /* itr */
        start local 2 // java.util.Iterator itr
         2: .line 418
            iconst_0
            istore 3 /* result */
        start local 3 // int result
         3: .line 419
            goto 6
         4: .line 420
      StackMap locals: java.util.Iterator int
      StackMap stack:
            aload 1 /* o */
            aload 2 /* itr */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 6
         5: .line 421
            iinc 3 /* result */ 1
         6: .line 419
      StackMap locals:
      StackMap stack:
            aload 2 /* itr */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 4
         7: .line 424
            iload 3 /* result */
            ireturn
        end local 3 // int result
        end local 2 // java.util.Iterator itr
        end local 1 // java.lang.Object o
        end local 0 // org.hibernate.collection.internal.PersistentBag this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lorg/hibernate/collection/internal/PersistentBag;
            0    8     1       o  Ljava/lang/Object;
            2    8     2     itr  Ljava/util/Iterator;
            3    8     3  result  I
    MethodParameters:
      Name  Flags
      o     

  public void add(int, java.lang.Object);
    descriptor: (ILjava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.hibernate.collection.internal.PersistentBag this
        start local 1 // int i
        start local 2 // java.lang.Object o
         0: .line 432
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentBag.write:()V
         1: .line 433
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentBag.bag:Ljava/util/List;
            iload 1 /* i */
            aload 2 /* o */
            invokeinterface java.util.List.add:(ILjava/lang/Object;)V
         2: .line 434
            return
        end local 2 // java.lang.Object o
        end local 1 // int i
        end local 0 // org.hibernate.collection.internal.PersistentBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/hibernate/collection/internal/PersistentBag;
            0    3     1     i  I
            0    3     2     o  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      i     
      o     

  public boolean addAll(int, java.util.Collection);
    descriptor: (ILjava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.hibernate.collection.internal.PersistentBag this
        start local 1 // int i
        start local 2 // java.util.Collection c
         0: .line 439
            aload 2 /* c */
            invokeinterface java.util.Collection.size:()I
            ifle 3
         1: .line 440
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentBag.write:()V
         2: .line 441
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentBag.bag:Ljava/util/List;
            iload 1 /* i */
            aload 2 /* c */
            invokeinterface java.util.List.addAll:(ILjava/util/Collection;)Z
            ireturn
         3: .line 444
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 2 // java.util.Collection c
        end local 1 // int i
        end local 0 // org.hibernate.collection.internal.PersistentBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/hibernate/collection/internal/PersistentBag;
            0    4     1     i  I
            0    4     2     c  Ljava/util/Collection;
    MethodParameters:
      Name  Flags
      i     
      c     

  public java.lang.Object get(int);
    descriptor: (I)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hibernate.collection.internal.PersistentBag this
        start local 1 // int i
         0: .line 451
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentBag.read:()V
         1: .line 452
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentBag.bag:Ljava/util/List;
            iload 1 /* i */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            areturn
        end local 1 // int i
        end local 0 // org.hibernate.collection.internal.PersistentBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/hibernate/collection/internal/PersistentBag;
            0    2     1     i  I
    MethodParameters:
      Name  Flags
      i     

  public int indexOf(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hibernate.collection.internal.PersistentBag this
        start local 1 // java.lang.Object o
         0: .line 458
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentBag.read:()V
         1: .line 459
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentBag.bag:Ljava/util/List;
            aload 1 /* o */
            invokeinterface java.util.List.indexOf:(Ljava/lang/Object;)I
            ireturn
        end local 1 // java.lang.Object o
        end local 0 // org.hibernate.collection.internal.PersistentBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/hibernate/collection/internal/PersistentBag;
            0    2     1     o  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      o     

  public int lastIndexOf(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hibernate.collection.internal.PersistentBag this
        start local 1 // java.lang.Object o
         0: .line 465
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentBag.read:()V
         1: .line 466
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentBag.bag:Ljava/util/List;
            aload 1 /* o */
            invokeinterface java.util.List.lastIndexOf:(Ljava/lang/Object;)I
            ireturn
        end local 1 // java.lang.Object o
        end local 0 // org.hibernate.collection.internal.PersistentBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/hibernate/collection/internal/PersistentBag;
            0    2     1     o  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      o     

  public java.util.ListIterator listIterator();
    descriptor: ()Ljava/util/ListIterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.hibernate.collection.internal.PersistentBag this
         0: .line 472
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentBag.read:()V
         1: .line 473
            new org.hibernate.collection.internal.AbstractPersistentCollection$ListIteratorProxy
            dup
            aload 0 /* this */
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentBag.bag:Ljava/util/List;
            invokeinterface java.util.List.listIterator:()Ljava/util/ListIterator;
            invokespecial org.hibernate.collection.internal.AbstractPersistentCollection$ListIteratorProxy.<init>:(Lorg/hibernate/collection/internal/AbstractPersistentCollection;Ljava/util/ListIterator;)V
            areturn
        end local 0 // org.hibernate.collection.internal.PersistentBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/hibernate/collection/internal/PersistentBag;

  public java.util.ListIterator listIterator(int);
    descriptor: (I)Ljava/util/ListIterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.hibernate.collection.internal.PersistentBag this
        start local 1 // int i
         0: .line 479
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentBag.read:()V
         1: .line 480
            new org.hibernate.collection.internal.AbstractPersistentCollection$ListIteratorProxy
            dup
            aload 0 /* this */
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentBag.bag:Ljava/util/List;
            iload 1 /* i */
            invokeinterface java.util.List.listIterator:(I)Ljava/util/ListIterator;
            invokespecial org.hibernate.collection.internal.AbstractPersistentCollection$ListIteratorProxy.<init>:(Lorg/hibernate/collection/internal/AbstractPersistentCollection;Ljava/util/ListIterator;)V
            areturn
        end local 1 // int i
        end local 0 // org.hibernate.collection.internal.PersistentBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/hibernate/collection/internal/PersistentBag;
            0    2     1     i  I
    MethodParameters:
      Name  Flags
      i     

  public java.lang.Object remove(int);
    descriptor: (I)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hibernate.collection.internal.PersistentBag this
        start local 1 // int i
         0: .line 486
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentBag.write:()V
         1: .line 487
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentBag.bag:Ljava/util/List;
            iload 1 /* i */
            invokeinterface java.util.List.remove:(I)Ljava/lang/Object;
            areturn
        end local 1 // int i
        end local 0 // org.hibernate.collection.internal.PersistentBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/hibernate/collection/internal/PersistentBag;
            0    2     1     i  I
    MethodParameters:
      Name  Flags
      i     

  public java.lang.Object set(int, java.lang.Object);
    descriptor: (ILjava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.hibernate.collection.internal.PersistentBag this
        start local 1 // int i
        start local 2 // java.lang.Object o
         0: .line 493
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentBag.write:()V
         1: .line 494
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentBag.bag:Ljava/util/List;
            iload 1 /* i */
            aload 2 /* o */
            invokeinterface java.util.List.set:(ILjava/lang/Object;)Ljava/lang/Object;
            areturn
        end local 2 // java.lang.Object o
        end local 1 // int i
        end local 0 // org.hibernate.collection.internal.PersistentBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/hibernate/collection/internal/PersistentBag;
            0    2     1     i  I
            0    2     2     o  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      i     
      o     

  public java.util.List subList(int, int);
    descriptor: (II)Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=3
        start local 0 // org.hibernate.collection.internal.PersistentBag this
        start local 1 // int start
        start local 2 // int end
         0: .line 500
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentBag.read:()V
         1: .line 501
            new org.hibernate.collection.internal.AbstractPersistentCollection$ListProxy
            dup
            aload 0 /* this */
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentBag.bag:Ljava/util/List;
            iload 1 /* start */
            iload 2 /* end */
            invokeinterface java.util.List.subList:(II)Ljava/util/List;
            invokespecial org.hibernate.collection.internal.AbstractPersistentCollection$ListProxy.<init>:(Lorg/hibernate/collection/internal/AbstractPersistentCollection;Ljava/util/List;)V
            areturn
        end local 2 // int end
        end local 1 // int start
        end local 0 // org.hibernate.collection.internal.PersistentBag this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/hibernate/collection/internal/PersistentBag;
            0    2     1  start  I
            0    2     2    end  I
    MethodParameters:
       Name  Flags
      start  
      end    

  public boolean entryExists(java.lang.Object, int);
    descriptor: (Ljava/lang/Object;I)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=3, args_size=3
        start local 0 // org.hibernate.collection.internal.PersistentBag this
        start local 1 // java.lang.Object entry
        start local 2 // int i
         0: .line 506
            aload 1 /* entry */
            ifnull 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 2 // int i
        end local 1 // java.lang.Object entry
        end local 0 // org.hibernate.collection.internal.PersistentBag this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/hibernate/collection/internal/PersistentBag;
            0    2     1  entry  Ljava/lang/Object;
            0    2     2      i  I
    MethodParameters:
       Name  Flags
      entry  
      i      

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hibernate.collection.internal.PersistentBag this
         0: .line 511
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentBag.read:()V
         1: .line 512
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentBag.bag:Ljava/util/List;
            invokevirtual java.lang.Object.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.hibernate.collection.internal.PersistentBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/hibernate/collection/internal/PersistentBag;

  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.hibernate.collection.internal.PersistentBag this
        start local 1 // java.lang.Object obj
         0: .line 526
            aload 0 /* this */
            aload 1 /* obj */
            invokespecial java.lang.Object.equals:(Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.lang.Object obj
        end local 0 // org.hibernate.collection.internal.PersistentBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hibernate/collection/internal/PersistentBag;
            0    1     1   obj  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      obj   

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hibernate.collection.internal.PersistentBag this
         0: .line 531
            aload 0 /* this */
            invokespecial java.lang.Object.hashCode:()I
            ireturn
        end local 0 // org.hibernate.collection.internal.PersistentBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hibernate/collection/internal/PersistentBag;
}
SourceFile: "PersistentBag.java"
NestMembers:
  org.hibernate.collection.internal.PersistentBag$Clear  org.hibernate.collection.internal.PersistentBag$SimpleAdd
InnerClasses:
  protected abstract DelayedOperation = org.hibernate.collection.internal.AbstractPersistentCollection$DelayedOperation of org.hibernate.collection.internal.AbstractPersistentCollection
  protected final IteratorProxy = org.hibernate.collection.internal.AbstractPersistentCollection$IteratorProxy of org.hibernate.collection.internal.AbstractPersistentCollection
  protected final ListIteratorProxy = org.hibernate.collection.internal.AbstractPersistentCollection$ListIteratorProxy of org.hibernate.collection.internal.AbstractPersistentCollection
  protected final ListProxy = org.hibernate.collection.internal.AbstractPersistentCollection$ListProxy of org.hibernate.collection.internal.AbstractPersistentCollection
  final Clear = org.hibernate.collection.internal.PersistentBag$Clear of org.hibernate.collection.internal.PersistentBag
  final SimpleAdd = org.hibernate.collection.internal.PersistentBag$SimpleAdd of org.hibernate.collection.internal.PersistentBag