public class org.hibernate.collection.internal.PersistentList 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.PersistentList
  super_class: org.hibernate.collection.internal.AbstractPersistentCollection
{
  protected java.util.List list;
    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.PersistentList this
         0: .line 54
            aload 0 /* this */
            invokespecial org.hibernate.collection.internal.AbstractPersistentCollection.<init>:()V
         1: .line 55
            return
        end local 0 // org.hibernate.collection.internal.PersistentList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/hibernate/collection/internal/PersistentList;

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

  public void <init>(org.hibernate.engine.spi.SessionImplementor, java.util.List);
    descriptor: (Lorg/hibernate/engine/spi/SessionImplementor;Ljava/util/List;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.hibernate.collection.internal.PersistentList this
        start local 1 // org.hibernate.engine.spi.SessionImplementor session
        start local 2 // java.util.List list
         0: .line 73
            aload 0 /* this */
            aload 1 /* session */
            invokespecial org.hibernate.collection.internal.AbstractPersistentCollection.<init>:(Lorg/hibernate/engine/spi/SessionImplementor;)V
         1: .line 74
            aload 0 /* this */
            aload 2 /* list */
            putfield org.hibernate.collection.internal.PersistentList.list:Ljava/util/List;
         2: .line 75
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentList.setInitialized:()V
         3: .line 76
            aload 0 /* this */
            iconst_1
            invokevirtual org.hibernate.collection.internal.PersistentList.setDirectlyAccessible:(Z)V
         4: .line 77
            return
        end local 2 // java.util.List list
        end local 1 // org.hibernate.engine.spi.SessionImplementor session
        end local 0 // org.hibernate.collection.internal.PersistentList this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lorg/hibernate/collection/internal/PersistentList;
            0    5     1  session  Lorg/hibernate/engine/spi/SessionImplementor;
            0    5     2     list  Ljava/util/List;
    MethodParameters:
         Name  Flags
      session  
      list     

  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=3, locals=6, args_size=2
        start local 0 // org.hibernate.collection.internal.PersistentList this
        start local 1 // org.hibernate.persister.collection.CollectionPersister persister
         0: .line 82
            new java.util.ArrayList
            dup
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentList.list: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 83
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentList.list:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 4
            goto 5
      StackMap locals: org.hibernate.collection.internal.PersistentList 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 /* element */
        start local 3 // java.lang.Object element
         3: .line 84
            aload 1 /* persister */
            invokeinterface org.hibernate.persister.collection.CollectionPersister.getElementType:()Lorg/hibernate/type/Type;
            aload 3 /* element */
            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;
            astore 5 /* deepCopy */
        start local 5 // java.lang.Object deepCopy
         4: .line 85
            aload 2 /* clonedList */
            aload 5 /* deepCopy */
            invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            pop
        end local 5 // java.lang.Object deepCopy
        end local 3 // java.lang.Object element
         5: .line 83
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         6: .line 87
            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.PersistentList this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    7     0        this  Lorg/hibernate/collection/internal/PersistentList;
            0    7     1   persister  Lorg/hibernate/persister/collection/CollectionPersister;
            1    7     2  clonedList  Ljava/util/ArrayList;
            3    5     3     element  Ljava/lang/Object;
            4    5     5    deepCopy  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.PersistentList this
        start local 1 // java.io.Serializable snapshot
        start local 2 // java.lang.String entityName
         0: .line 92
            aload 1 /* snapshot */
            checkcast java.util.List
            astore 3 /* sn */
        start local 3 // java.util.List sn
         1: .line 93
            aload 3 /* sn */
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentList.list:Ljava/util/List;
            aload 2 /* entityName */
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentList.getSession:()Lorg/hibernate/engine/spi/SessionImplementor;
            invokestatic org.hibernate.collection.internal.PersistentList.getOrphans:(Ljava/util/Collection;Ljava/util/Collection;Ljava/lang/String;Lorg/hibernate/engine/spi/SessionImplementor;)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.PersistentList this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lorg/hibernate/collection/internal/PersistentList;
            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 boolean equalsSnapshot(org.hibernate.persister.collection.CollectionPersister);
    descriptor: (Lorg/hibernate/persister/collection/CollectionPersister;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=2
        start local 0 // org.hibernate.collection.internal.PersistentList this
        start local 1 // org.hibernate.persister.collection.CollectionPersister persister
         0: .line 98
            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 99
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentList.getSnapshot:()Ljava/io/Serializable;
            checkcast java.util.List
            astore 3 /* sn */
        start local 3 // java.util.List sn
         2: .line 100
            aload 3 /* sn */
            invokeinterface java.util.List.size:()I
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentList.list:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            if_icmpeq 4
         3: .line 101
            iconst_0
            ireturn
         4: .line 103
      StackMap locals: org.hibernate.type.Type java.util.List
      StackMap stack:
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentList.list:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 4 /* itr */
        start local 4 // java.util.Iterator itr
         5: .line 104
            aload 3 /* sn */
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 5 /* snapshotItr */
        start local 5 // java.util.Iterator snapshotItr
         6: .line 105
            goto 9
         7: .line 106
      StackMap locals: java.util.Iterator java.util.Iterator
      StackMap stack:
            aload 2 /* elementType */
            aload 4 /* itr */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            aload 5 /* snapshotItr */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentList.getSession:()Lorg/hibernate/engine/spi/SessionImplementor;
            invokeinterface org.hibernate.type.Type.isDirty:(Ljava/lang/Object;Ljava/lang/Object;Lorg/hibernate/engine/spi/SessionImplementor;)Z
            ifeq 9
         8: .line 107
            iconst_0
            ireturn
         9: .line 105
      StackMap locals:
      StackMap stack:
            aload 4 /* itr */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 7
        10: .line 110
            iconst_1
            ireturn
        end local 5 // java.util.Iterator snapshotItr
        end local 4 // java.util.Iterator itr
        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.PersistentList this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   11     0         this  Lorg/hibernate/collection/internal/PersistentList;
            0   11     1    persister  Lorg/hibernate/persister/collection/CollectionPersister;
            1   11     2  elementType  Lorg/hibernate/type/Type;
            2   11     3           sn  Ljava/util/List;
            5   11     4          itr  Ljava/util/Iterator;
            6   11     5  snapshotItr  Ljava/util/Iterator;
    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.PersistentList this
        start local 1 // java.io.Serializable snapshot
         0: .line 115
            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.PersistentList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/hibernate/collection/internal/PersistentList;
            0    1     1  snapshot  Ljava/io/Serializable;
    MethodParameters:
          Name  Flags
      snapshot  

  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.PersistentList this
        start local 1 // org.hibernate.persister.collection.CollectionPersister persister
        start local 2 // int anticipatedSize
         0: .line 120
            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.PersistentList.list:Ljava/util/List;
         1: .line 121
            return
        end local 2 // int anticipatedSize
        end local 1 // org.hibernate.persister.collection.CollectionPersister persister
        end local 0 // org.hibernate.collection.internal.PersistentList this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    2     0             this  Lorg/hibernate/collection/internal/PersistentList;
            0    2     1        persister  Lorg/hibernate/persister/collection/CollectionPersister;
            0    2     2  anticipatedSize  I
    MethodParameters:
                 Name  Flags
      persister        
      anticipatedSize  

  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.PersistentList this
        start local 1 // java.lang.Object collection
         0: .line 125
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentList.list: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.PersistentList this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lorg/hibernate/collection/internal/PersistentList;
            0    2     1  collection  Ljava/lang/Object;
    MethodParameters:
            Name  Flags
      collection  

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

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hibernate.collection.internal.PersistentList this
         0: .line 135
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentList.readSize:()Z
            ifeq 2
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentList.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.PersistentList.list:Ljava/util/List;
            invokeinterface java.util.List.isEmpty:()Z
      StackMap locals:
      StackMap stack: int
         3: ireturn
        end local 0 // org.hibernate.collection.internal.PersistentList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/hibernate/collection/internal/PersistentList;

  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.PersistentList this
        start local 1 // java.lang.Object object
         0: .line 140
            aload 0 /* this */
            aload 1 /* object */
            invokevirtual org.hibernate.collection.internal.PersistentList.readElementExistence:(Ljava/lang/Object;)Ljava/lang/Boolean;
            astore 2 /* exists */
        start local 2 // java.lang.Boolean exists
         1: .line 141
            aload 2 /* exists */
            ifnonnull 3
         2: .line 142
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentList.list:Ljava/util/List;
            aload 1 /* object */
            invokeinterface java.util.List.contains:(Ljava/lang/Object;)Z
            goto 4
         3: .line 143
      StackMap locals: java.lang.Boolean
      StackMap stack:
            aload 2 /* exists */
            invokevirtual java.lang.Boolean.booleanValue:()Z
         4: .line 141
      StackMap locals:
      StackMap stack: int
            ireturn
        end local 2 // java.lang.Boolean exists
        end local 1 // java.lang.Object object
        end local 0 // org.hibernate.collection.internal.PersistentList this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lorg/hibernate/collection/internal/PersistentList;
            0    5     1  object  Ljava/lang/Object;
            1    5     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.PersistentList this
         0: .line 148
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentList.read:()V
         1: .line 149
            new org.hibernate.collection.internal.AbstractPersistentCollection$IteratorProxy
            dup
            aload 0 /* this */
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentList.list: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.PersistentList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/hibernate/collection/internal/PersistentList;

  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.PersistentList this
         0: .line 154
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentList.read:()V
         1: .line 155
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentList.list:Ljava/util/List;
            invokeinterface java.util.List.toArray:()[Ljava/lang/Object;
            areturn
        end local 0 // org.hibernate.collection.internal.PersistentList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/hibernate/collection/internal/PersistentList;

  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.PersistentList this
        start local 1 // java.lang.Object[] array
         0: .line 160
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentList.read:()V
         1: .line 161
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentList.list:Ljava/util/List;
            aload 1 /* array */
            invokeinterface java.util.List.toArray:([Ljava/lang/Object;)[Ljava/lang/Object;
            areturn
        end local 1 // java.lang.Object[] array
        end local 0 // org.hibernate.collection.internal.PersistentList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/hibernate/collection/internal/PersistentList;
            0    2     1  array  [Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      array  

  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.PersistentList this
        start local 1 // java.lang.Object object
         0: .line 167
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentList.isOperationQueueEnabled:()Z
            ifne 3
         1: .line 168
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentList.write:()V
         2: .line 169
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentList.list:Ljava/util/List;
            aload 1 /* object */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            ireturn
         3: .line 172
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            new org.hibernate.collection.internal.PersistentList$SimpleAdd
            dup
            aload 0 /* this */
            aload 1 /* object */
            invokespecial org.hibernate.collection.internal.PersistentList$SimpleAdd.<init>:(Lorg/hibernate/collection/internal/PersistentList;Ljava/lang/Object;)V
            invokevirtual org.hibernate.collection.internal.PersistentList.queueOperation:(Lorg/hibernate/collection/internal/AbstractPersistentCollection$DelayedOperation;)V
         4: .line 173
            iconst_1
            ireturn
        end local 1 // java.lang.Object object
        end local 0 // org.hibernate.collection.internal.PersistentList this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lorg/hibernate/collection/internal/PersistentList;
            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=5, locals=3, args_size=2
        start local 0 // org.hibernate.collection.internal.PersistentList this
        start local 1 // java.lang.Object value
         0: .line 179
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentList.isPutQueueEnabled:()Z
            ifeq 1
            aload 0 /* this */
            aload 1 /* value */
            invokevirtual org.hibernate.collection.internal.PersistentList.readElementExistence:(Ljava/lang/Object;)Ljava/lang/Boolean;
            goto 2
      StackMap locals:
      StackMap stack:
         1: aconst_null
      StackMap locals:
      StackMap stack: java.lang.Boolean
         2: astore 2 /* exists */
        start local 2 // java.lang.Boolean exists
         3: .line 180
            aload 2 /* exists */
            ifnonnull 9
         4: .line 181
            aload 0 /* this */
            iconst_1
            invokevirtual org.hibernate.collection.internal.PersistentList.initialize:(Z)V
         5: .line 182
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentList.list:Ljava/util/List;
            aload 1 /* value */
            invokeinterface java.util.List.remove:(Ljava/lang/Object;)Z
            ifeq 8
         6: .line 183
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentList.dirty:()V
         7: .line 184
            iconst_1
            ireturn
         8: .line 187
      StackMap locals: java.lang.Boolean
      StackMap stack:
            iconst_0
            ireturn
         9: .line 190
      StackMap locals:
      StackMap stack:
            aload 2 /* exists */
            invokevirtual java.lang.Boolean.booleanValue:()Z
            ifeq 12
        10: .line 191
            aload 0 /* this */
            new org.hibernate.collection.internal.PersistentList$SimpleRemove
            dup
            aload 0 /* this */
            aload 1 /* value */
            invokespecial org.hibernate.collection.internal.PersistentList$SimpleRemove.<init>:(Lorg/hibernate/collection/internal/PersistentList;Ljava/lang/Object;)V
            invokevirtual org.hibernate.collection.internal.PersistentList.queueOperation:(Lorg/hibernate/collection/internal/AbstractPersistentCollection$DelayedOperation;)V
        11: .line 192
            iconst_1
            ireturn
        12: .line 195
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 2 // java.lang.Boolean exists
        end local 1 // java.lang.Object value
        end local 0 // org.hibernate.collection.internal.PersistentList this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   13     0    this  Lorg/hibernate/collection/internal/PersistentList;
            0   13     1   value  Ljava/lang/Object;
            3   13     2  exists  Ljava/lang/Boolean;
    MethodParameters:
       Name  Flags
      value  

  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.PersistentList this
        start local 1 // java.util.Collection coll
         0: .line 202
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentList.read:()V
         1: .line 203
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentList.list:Ljava/util/List;
            aload 1 /* coll */
            invokeinterface java.util.List.containsAll:(Ljava/util/Collection;)Z
            ireturn
        end local 1 // java.util.Collection coll
        end local 0 // org.hibernate.collection.internal.PersistentList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/hibernate/collection/internal/PersistentList;
            0    2     1  coll  Ljava/util/Collection;
    MethodParameters:
      Name  Flags
      coll  

  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.PersistentList this
        start local 1 // java.util.Collection values
         0: .line 209
            aload 1 /* values */
            invokeinterface java.util.Collection.size:()I
            ifne 2
         1: .line 210
            iconst_0
            ireturn
         2: .line 212
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentList.isOperationQueueEnabled:()Z
            ifne 5
         3: .line 213
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentList.write:()V
         4: .line 214
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentList.list:Ljava/util/List;
            aload 1 /* values */
            invokeinterface java.util.List.addAll:(Ljava/util/Collection;)Z
            ireturn
         5: .line 217
      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.PersistentList 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 218
            aload 0 /* this */
            new org.hibernate.collection.internal.PersistentList$SimpleAdd
            dup
            aload 0 /* this */
            aload 2 /* value */
            invokespecial org.hibernate.collection.internal.PersistentList$SimpleAdd.<init>:(Lorg/hibernate/collection/internal/PersistentList;Ljava/lang/Object;)V
            invokevirtual org.hibernate.collection.internal.PersistentList.queueOperation:(Lorg/hibernate/collection/internal/AbstractPersistentCollection$DelayedOperation;)V
        end local 2 // java.lang.Object value
         8: .line 217
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 6
         9: .line 220
            aload 1 /* values */
            invokeinterface java.util.Collection.size:()I
            ifle 10
            iconst_1
            ireturn
      StackMap locals: org.hibernate.collection.internal.PersistentList java.util.Collection
      StackMap stack:
        10: iconst_0
            ireturn
        end local 1 // java.util.Collection values
        end local 0 // org.hibernate.collection.internal.PersistentList this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   11     0    this  Lorg/hibernate/collection/internal/PersistentList;
            0   11     1  values  Ljava/util/Collection;
            7    8     2   value  Ljava/lang/Object;
    MethodParameters:
        Name  Flags
      values  

  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.PersistentList this
        start local 1 // int index
        start local 2 // java.util.Collection coll
         0: .line 227
            aload 2 /* coll */
            invokeinterface java.util.Collection.size:()I
            ifle 3
         1: .line 228
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentList.write:()V
         2: .line 229
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentList.list:Ljava/util/List;
            iload 1 /* index */
            aload 2 /* coll */
            invokeinterface java.util.List.addAll:(ILjava/util/Collection;)Z
            ireturn
         3: .line 232
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 2 // java.util.Collection coll
        end local 1 // int index
        end local 0 // org.hibernate.collection.internal.PersistentList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/hibernate/collection/internal/PersistentList;
            0    4     1  index  I
            0    4     2   coll  Ljava/util/Collection;
    MethodParameters:
       Name  Flags
      index  
      coll   

  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.PersistentList this
        start local 1 // java.util.Collection coll
         0: .line 239
            aload 1 /* coll */
            invokeinterface java.util.Collection.size:()I
            ifle 6
         1: .line 240
            aload 0 /* this */
            iconst_1
            invokevirtual org.hibernate.collection.internal.PersistentList.initialize:(Z)V
         2: .line 241
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentList.list:Ljava/util/List;
            aload 1 /* coll */
            invokeinterface java.util.List.removeAll:(Ljava/util/Collection;)Z
            ifeq 5
         3: .line 242
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentList.dirty:()V
         4: .line 243
            iconst_1
            ireturn
         5: .line 246
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
         6: .line 250
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // java.util.Collection coll
        end local 0 // org.hibernate.collection.internal.PersistentList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/hibernate/collection/internal/PersistentList;
            0    7     1  coll  Ljava/util/Collection;
    MethodParameters:
      Name  Flags
      coll  

  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.PersistentList this
        start local 1 // java.util.Collection coll
         0: .line 257
            aload 0 /* this */
            iconst_1
            invokevirtual org.hibernate.collection.internal.PersistentList.initialize:(Z)V
         1: .line 258
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentList.list:Ljava/util/List;
            aload 1 /* coll */
            invokeinterface java.util.List.retainAll:(Ljava/util/Collection;)Z
            ifeq 4
         2: .line 259
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentList.dirty:()V
         3: .line 260
            iconst_1
            ireturn
         4: .line 263
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // java.util.Collection coll
        end local 0 // org.hibernate.collection.internal.PersistentList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/hibernate/collection/internal/PersistentList;
            0    5     1  coll  Ljava/util/Collection;
    MethodParameters:
      Name  Flags
      coll  

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.hibernate.collection.internal.PersistentList this
         0: .line 270
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentList.isClearQueueEnabled:()Z
            ifeq 3
         1: .line 271
            aload 0 /* this */
            new org.hibernate.collection.internal.PersistentList$Clear
            dup
            aload 0 /* this */
            invokespecial org.hibernate.collection.internal.PersistentList$Clear.<init>:(Lorg/hibernate/collection/internal/PersistentList;)V
            invokevirtual org.hibernate.collection.internal.PersistentList.queueOperation:(Lorg/hibernate/collection/internal/AbstractPersistentCollection$DelayedOperation;)V
         2: .line 272
            goto 7
         3: .line 274
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            invokevirtual org.hibernate.collection.internal.PersistentList.initialize:(Z)V
         4: .line 275
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentList.list:Ljava/util/List;
            invokeinterface java.util.List.isEmpty:()Z
            ifne 7
         5: .line 276
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentList.list:Ljava/util/List;
            invokeinterface java.util.List.clear:()V
         6: .line 277
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentList.dirty:()V
         7: .line 280
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.hibernate.collection.internal.PersistentList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lorg/hibernate/collection/internal/PersistentList;

  public java.lang.Object get(int);
    descriptor: (I)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.hibernate.collection.internal.PersistentList this
        start local 1 // int index
         0: .line 285
            iload 1 /* index */
            ifge 2
         1: .line 286
            new java.lang.ArrayIndexOutOfBoundsException
            dup
            ldc "negative index"
            invokespecial java.lang.ArrayIndexOutOfBoundsException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 288
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* index */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokevirtual org.hibernate.collection.internal.PersistentList.readElementByIndex:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 2 /* result */
        start local 2 // java.lang.Object result
         3: .line 289
            aload 2 /* result */
            getstatic org.hibernate.collection.internal.PersistentList.UNKNOWN:Ljava/lang/Object;
            if_acmpne 4
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentList.list:Ljava/util/List;
            iload 1 /* index */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            goto 5
      StackMap locals: java.lang.Object
      StackMap stack:
         4: aload 2 /* result */
      StackMap locals:
      StackMap stack: java.lang.Object
         5: areturn
        end local 2 // java.lang.Object result
        end local 1 // int index
        end local 0 // org.hibernate.collection.internal.PersistentList this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lorg/hibernate/collection/internal/PersistentList;
            0    6     1   index  I
            3    6     2  result  Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      index  

  public java.lang.Object set(int, java.lang.Object);
    descriptor: (ILjava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=4, args_size=3
        start local 0 // org.hibernate.collection.internal.PersistentList this
        start local 1 // int index
        start local 2 // java.lang.Object value
         0: .line 295
            iload 1 /* index */
            ifge 2
         1: .line 296
            new java.lang.ArrayIndexOutOfBoundsException
            dup
            ldc "negative index"
            invokespecial java.lang.ArrayIndexOutOfBoundsException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 299
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentList.isPutQueueEnabled:()Z
            ifeq 3
            aload 0 /* this */
            iload 1 /* index */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokevirtual org.hibernate.collection.internal.PersistentList.readElementByIndex:(Ljava/lang/Object;)Ljava/lang/Object;
            goto 4
      StackMap locals:
      StackMap stack:
         3: getstatic org.hibernate.collection.internal.PersistentList.UNKNOWN:Ljava/lang/Object;
      StackMap locals:
      StackMap stack: java.lang.Object
         4: astore 3 /* old */
        start local 3 // java.lang.Object old
         5: .line 301
            aload 3 /* old */
            getstatic org.hibernate.collection.internal.PersistentList.UNKNOWN:Ljava/lang/Object;
            if_acmpne 8
         6: .line 302
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentList.write:()V
         7: .line 303
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentList.list:Ljava/util/List;
            iload 1 /* index */
            aload 2 /* value */
            invokeinterface java.util.List.set:(ILjava/lang/Object;)Ljava/lang/Object;
            areturn
         8: .line 306
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 0 /* this */
            new org.hibernate.collection.internal.PersistentList$Set
            dup
            aload 0 /* this */
            iload 1 /* index */
            aload 2 /* value */
            aload 3 /* old */
            invokespecial org.hibernate.collection.internal.PersistentList$Set.<init>:(Lorg/hibernate/collection/internal/PersistentList;ILjava/lang/Object;Ljava/lang/Object;)V
            invokevirtual org.hibernate.collection.internal.PersistentList.queueOperation:(Lorg/hibernate/collection/internal/AbstractPersistentCollection$DelayedOperation;)V
         9: .line 307
            aload 3 /* old */
            areturn
        end local 3 // java.lang.Object old
        end local 2 // java.lang.Object value
        end local 1 // int index
        end local 0 // org.hibernate.collection.internal.PersistentList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Lorg/hibernate/collection/internal/PersistentList;
            0   10     1  index  I
            0   10     2  value  Ljava/lang/Object;
            5   10     3    old  Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      index  
      value  

  public java.lang.Object remove(int);
    descriptor: (I)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=2
        start local 0 // org.hibernate.collection.internal.PersistentList this
        start local 1 // int index
         0: .line 314
            iload 1 /* index */
            ifge 2
         1: .line 315
            new java.lang.ArrayIndexOutOfBoundsException
            dup
            ldc "negative index"
            invokespecial java.lang.ArrayIndexOutOfBoundsException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 317
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentList.isPutQueueEnabled:()Z
            ifeq 3
            aload 0 /* this */
            iload 1 /* index */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokevirtual org.hibernate.collection.internal.PersistentList.readElementByIndex:(Ljava/lang/Object;)Ljava/lang/Object;
            goto 4
      StackMap locals:
      StackMap stack:
         3: getstatic org.hibernate.collection.internal.PersistentList.UNKNOWN:Ljava/lang/Object;
      StackMap locals:
      StackMap stack: java.lang.Object
         4: astore 2 /* old */
        start local 2 // java.lang.Object old
         5: .line 318
            aload 2 /* old */
            getstatic org.hibernate.collection.internal.PersistentList.UNKNOWN:Ljava/lang/Object;
            if_acmpne 8
         6: .line 319
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentList.write:()V
         7: .line 320
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentList.list:Ljava/util/List;
            iload 1 /* index */
            invokeinterface java.util.List.remove:(I)Ljava/lang/Object;
            areturn
         8: .line 323
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 0 /* this */
            new org.hibernate.collection.internal.PersistentList$Remove
            dup
            aload 0 /* this */
            iload 1 /* index */
            aload 2 /* old */
            invokespecial org.hibernate.collection.internal.PersistentList$Remove.<init>:(Lorg/hibernate/collection/internal/PersistentList;ILjava/lang/Object;)V
            invokevirtual org.hibernate.collection.internal.PersistentList.queueOperation:(Lorg/hibernate/collection/internal/AbstractPersistentCollection$DelayedOperation;)V
         9: .line 324
            aload 2 /* old */
            areturn
        end local 2 // java.lang.Object old
        end local 1 // int index
        end local 0 // org.hibernate.collection.internal.PersistentList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Lorg/hibernate/collection/internal/PersistentList;
            0   10     1  index  I
            5   10     2    old  Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      index  

  public void add(int, java.lang.Object);
    descriptor: (ILjava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=3
        start local 0 // org.hibernate.collection.internal.PersistentList this
        start local 1 // int index
        start local 2 // java.lang.Object value
         0: .line 331
            iload 1 /* index */
            ifge 2
         1: .line 332
            new java.lang.ArrayIndexOutOfBoundsException
            dup
            ldc "negative index"
            invokespecial java.lang.ArrayIndexOutOfBoundsException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 334
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentList.isOperationQueueEnabled:()Z
            ifne 6
         3: .line 335
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentList.write:()V
         4: .line 336
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentList.list:Ljava/util/List;
            iload 1 /* index */
            aload 2 /* value */
            invokeinterface java.util.List.add:(ILjava/lang/Object;)V
         5: .line 337
            goto 7
         6: .line 339
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            new org.hibernate.collection.internal.PersistentList$Add
            dup
            aload 0 /* this */
            iload 1 /* index */
            aload 2 /* value */
            invokespecial org.hibernate.collection.internal.PersistentList$Add.<init>:(Lorg/hibernate/collection/internal/PersistentList;ILjava/lang/Object;)V
            invokevirtual org.hibernate.collection.internal.PersistentList.queueOperation:(Lorg/hibernate/collection/internal/AbstractPersistentCollection$DelayedOperation;)V
         7: .line 341
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.lang.Object value
        end local 1 // int index
        end local 0 // org.hibernate.collection.internal.PersistentList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    8     0   this  Lorg/hibernate/collection/internal/PersistentList;
            0    8     1  index  I
            0    8     2  value  Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      index  
      value  

  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.PersistentList this
        start local 1 // java.lang.Object value
         0: .line 346
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentList.read:()V
         1: .line 347
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentList.list:Ljava/util/List;
            aload 1 /* value */
            invokeinterface java.util.List.indexOf:(Ljava/lang/Object;)I
            ireturn
        end local 1 // java.lang.Object value
        end local 0 // org.hibernate.collection.internal.PersistentList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/hibernate/collection/internal/PersistentList;
            0    2     1  value  Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      value  

  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.PersistentList this
        start local 1 // java.lang.Object value
         0: .line 353
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentList.read:()V
         1: .line 354
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentList.list:Ljava/util/List;
            aload 1 /* value */
            invokeinterface java.util.List.lastIndexOf:(Ljava/lang/Object;)I
            ireturn
        end local 1 // java.lang.Object value
        end local 0 // org.hibernate.collection.internal.PersistentList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/hibernate/collection/internal/PersistentList;
            0    2     1  value  Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      value  

  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.PersistentList this
         0: .line 360
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentList.read:()V
         1: .line 361
            new org.hibernate.collection.internal.AbstractPersistentCollection$ListIteratorProxy
            dup
            aload 0 /* this */
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentList.list: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.PersistentList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/hibernate/collection/internal/PersistentList;

  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.PersistentList this
        start local 1 // int index
         0: .line 367
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentList.read:()V
         1: .line 368
            new org.hibernate.collection.internal.AbstractPersistentCollection$ListIteratorProxy
            dup
            aload 0 /* this */
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentList.list:Ljava/util/List;
            iload 1 /* index */
            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 index
        end local 0 // org.hibernate.collection.internal.PersistentList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/hibernate/collection/internal/PersistentList;
            0    2     1  index  I
    MethodParameters:
       Name  Flags
      index  

  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.PersistentList this
        start local 1 // int from
        start local 2 // int to
         0: .line 374
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentList.read:()V
         1: .line 375
            new org.hibernate.collection.internal.AbstractPersistentCollection$ListProxy
            dup
            aload 0 /* this */
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentList.list:Ljava/util/List;
            iload 1 /* from */
            iload 2 /* to */
            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 to
        end local 1 // int from
        end local 0 // org.hibernate.collection.internal.PersistentList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/hibernate/collection/internal/PersistentList;
            0    2     1  from  I
            0    2     2    to  I
    MethodParameters:
      Name  Flags
      from  
      to    

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

  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.PersistentList this
         0: .line 385
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentList.read:()V
         1: .line 386
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentList.list:Ljava/util/List;
            invokevirtual java.lang.Object.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.hibernate.collection.internal.PersistentList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/hibernate/collection/internal/PersistentList;

  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=8, args_size=5
        start local 0 // org.hibernate.collection.internal.PersistentList 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 393
            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.PersistentList.getSession:()Lorg/hibernate/engine/spi/SessionImplementor;
            invokeinterface org.hibernate.persister.collection.CollectionPersister.readElement:(Ljava/sql/ResultSet;Ljava/lang/Object;[Ljava/lang/String;Lorg/hibernate/engine/spi/SessionImplementor;)Ljava/lang/Object;
            astore 5 /* element */
        start local 5 // java.lang.Object element
         1: .line 394
            aload 2 /* persister */
            aload 1 /* rs */
            aload 3 /* descriptor */
            invokeinterface org.hibernate.loader.CollectionAliases.getSuffixedIndexAliases:()[Ljava/lang/String;
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentList.getSession:()Lorg/hibernate/engine/spi/SessionImplementor;
            invokeinterface org.hibernate.persister.collection.CollectionPersister.readIndex:(Ljava/sql/ResultSet;[Ljava/lang/String;Lorg/hibernate/engine/spi/SessionImplementor;)Ljava/lang/Object;
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            istore 6 /* index */
        start local 6 // int index
         2: .line 397
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentList.list:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            istore 7 /* i */
        start local 7 // int i
         3: goto 6
         4: .line 398
      StackMap locals: java.lang.Object int int
      StackMap stack:
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentList.list:Ljava/util/List;
            iload 7 /* i */
            aconst_null
            invokeinterface java.util.List.add:(ILjava/lang/Object;)V
         5: .line 397
            iinc 7 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 7 /* i */
            iload 6 /* index */
            if_icmple 4
        end local 7 // int i
         7: .line 401
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentList.list:Ljava/util/List;
            iload 6 /* index */
            aload 5 /* element */
            invokeinterface java.util.List.set:(ILjava/lang/Object;)Ljava/lang/Object;
            pop
         8: .line 402
            aload 5 /* element */
            areturn
        end local 6 // int index
        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.PersistentList this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    9     0        this  Lorg/hibernate/collection/internal/PersistentList;
            0    9     1          rs  Ljava/sql/ResultSet;
            0    9     2   persister  Lorg/hibernate/persister/collection/CollectionPersister;
            0    9     3  descriptor  Lorg/hibernate/loader/CollectionAliases;
            0    9     4       owner  Ljava/lang/Object;
            1    9     5     element  Ljava/lang/Object;
            2    9     6       index  I
            3    7     7           i  I
    Exceptions:
      throws org.hibernate.HibernateException, java.sql.SQLException
    MethodParameters:
            Name  Flags
      rs          
      persister   
      descriptor  
      owner       

  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.PersistentList this
        start local 1 // org.hibernate.persister.collection.CollectionPersister persister
         0: .line 408
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentList.list: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.PersistentList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/hibernate/collection/internal/PersistentList;
            0    1     1  persister  Lorg/hibernate/persister/collection/CollectionPersister;
    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=5, locals=10, args_size=4
        start local 0 // org.hibernate.collection.internal.PersistentList 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 415
            aload 2 /* disassembled */
            checkcast java.io.Serializable[]
            astore 4 /* array */
        start local 4 // java.io.Serializable[] array
         1: .line 416
            aload 4 /* array */
            arraylength
            istore 5 /* size */
        start local 5 // int size
         2: .line 417
            aload 0 /* this */
            aload 1 /* persister */
            iload 5 /* size */
            invokevirtual org.hibernate.collection.internal.PersistentList.beforeInitialize:(Lorg/hibernate/persister/collection/CollectionPersister;I)V
         3: .line 418
            aload 4 /* array */
            dup
            astore 9
            arraylength
            istore 8
            iconst_0
            istore 7
            goto 7
      StackMap locals: org.hibernate.collection.internal.PersistentList 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 /* arrayElement */
        start local 6 // java.io.Serializable arrayElement
         5: .line 419
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentList.list:Ljava/util/List;
            aload 1 /* persister */
            invokeinterface org.hibernate.persister.collection.CollectionPersister.getElementType:()Lorg/hibernate/type/Type;
            aload 6 /* arrayElement */
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentList.getSession:()Lorg/hibernate/engine/spi/SessionImplementor;
            aload 3 /* owner */
            invokeinterface org.hibernate.type.Type.assemble:(Ljava/io/Serializable;Lorg/hibernate/engine/spi/SessionImplementor;Ljava/lang/Object;)Ljava/lang/Object;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        end local 6 // java.io.Serializable arrayElement
         6: .line 418
            iinc 7 1
      StackMap locals:
      StackMap stack:
         7: iload 7
            iload 8
            if_icmplt 4
         8: .line 421
            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.PersistentList this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    9     0          this  Lorg/hibernate/collection/internal/PersistentList;
            0    9     1     persister  Lorg/hibernate/persister/collection/CollectionPersister;
            0    9     2  disassembled  Ljava/io/Serializable;
            0    9     3         owner  Ljava/lang/Object;
            1    9     4         array  [Ljava/io/Serializable;
            2    9     5          size  I
            5    6     6  arrayElement  Ljava/io/Serializable;
    Exceptions:
      throws org.hibernate.HibernateException
    MethodParameters:
              Name  Flags
      persister     
      disassembled  
      owner         

  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.PersistentList this
        start local 1 // org.hibernate.persister.collection.CollectionPersister persister
         0: .line 426
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentList.list:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            istore 2 /* length */
        start local 2 // int length
         1: .line 427
            iload 2 /* length */
            anewarray java.io.Serializable
            astore 3 /* result */
        start local 3 // java.io.Serializable[] result
         2: .line 428
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         3: goto 6
         4: .line 429
      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.PersistentList.list:Ljava/util/List;
            iload 4 /* i */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentList.getSession:()Lorg/hibernate/engine/spi/SessionImplementor;
            aconst_null
            invokeinterface org.hibernate.type.Type.disassemble:(Ljava/lang/Object;Lorg/hibernate/engine/spi/SessionImplementor;Ljava/lang/Object;)Ljava/io/Serializable;
            aastore
         5: .line 428
            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 431
            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.PersistentList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    8     0       this  Lorg/hibernate/collection/internal/PersistentList;
            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 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=3, locals=9, args_size=3
        start local 0 // org.hibernate.collection.internal.PersistentList this
        start local 1 // org.hibernate.persister.collection.CollectionPersister persister
        start local 2 // boolean indexIsFormula
         0: .line 437
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 3 /* deletes */
        start local 3 // java.util.List deletes
         1: .line 438
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentList.getSnapshot:()Ljava/io/Serializable;
            checkcast java.util.List
            astore 4 /* sn */
        start local 4 // java.util.List sn
         2: .line 440
            aload 4 /* sn */
            invokeinterface java.util.List.size:()I
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentList.list:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            if_icmple 12
         3: .line 441
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentList.list:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            istore 6 /* i */
        start local 6 // int i
         4: goto 9
         5: .line 442
      StackMap locals: org.hibernate.collection.internal.PersistentList org.hibernate.persister.collection.CollectionPersister int java.util.List java.util.List top int
      StackMap stack:
            aload 3 /* deletes */
            iload 2 /* indexIsFormula */
            ifeq 6
            aload 4 /* sn */
            iload 6 /* i */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            goto 7
      StackMap locals:
      StackMap stack: java.util.List
         6: iload 6 /* i */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
      StackMap locals: org.hibernate.collection.internal.PersistentList org.hibernate.persister.collection.CollectionPersister int java.util.List java.util.List top int
      StackMap stack: java.util.List java.lang.Object
         7: invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         8: .line 441
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
         9: iload 6 /* i */
            aload 4 /* sn */
            invokeinterface java.util.List.size:()I
            if_icmplt 5
        end local 6 // int i
        10: .line 444
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentList.list:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            istore 5 /* end */
        start local 5 // int end
        11: .line 445
            goto 13
        end local 5 // int end
        12: .line 447
      StackMap locals: org.hibernate.collection.internal.PersistentList org.hibernate.persister.collection.CollectionPersister int java.util.List java.util.List
      StackMap stack:
            aload 4 /* sn */
            invokeinterface java.util.List.size:()I
            istore 5 /* end */
        start local 5 // int end
        13: .line 449
      StackMap locals: int
      StackMap stack:
            iconst_0
            istore 6 /* i */
        start local 6 // int i
        14: goto 22
        15: .line 450
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentList.list:Ljava/util/List;
            iload 6 /* i */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            astore 7 /* item */
        start local 7 // java.lang.Object item
        16: .line 451
            aload 4 /* sn */
            iload 6 /* i */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            astore 8 /* snapshotItem */
        start local 8 // java.lang.Object snapshotItem
        17: .line 452
            aload 7 /* item */
            ifnonnull 21
            aload 8 /* snapshotItem */
            ifnull 21
        18: .line 453
            aload 3 /* deletes */
            iload 2 /* indexIsFormula */
            ifeq 19
            aload 8 /* snapshotItem */
            goto 20
      StackMap locals: org.hibernate.collection.internal.PersistentList org.hibernate.persister.collection.CollectionPersister int java.util.List java.util.List int int java.lang.Object java.lang.Object
      StackMap stack: java.util.List
        19: iload 6 /* i */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
      StackMap locals: org.hibernate.collection.internal.PersistentList org.hibernate.persister.collection.CollectionPersister int java.util.List java.util.List int int java.lang.Object java.lang.Object
      StackMap stack: java.util.List java.lang.Object
        20: invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        end local 8 // java.lang.Object snapshotItem
        end local 7 // java.lang.Object item
        21: .line 449
      StackMap locals:
      StackMap stack:
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        22: iload 6 /* i */
            iload 5 /* end */
            if_icmplt 15
        end local 6 // int i
        23: .line 456
            aload 3 /* deletes */
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            areturn
        end local 5 // int end
        end local 4 // java.util.List sn
        end local 3 // java.util.List deletes
        end local 2 // boolean indexIsFormula
        end local 1 // org.hibernate.persister.collection.CollectionPersister persister
        end local 0 // org.hibernate.collection.internal.PersistentList this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   24     0            this  Lorg/hibernate/collection/internal/PersistentList;
            0   24     1       persister  Lorg/hibernate/persister/collection/CollectionPersister;
            0   24     2  indexIsFormula  Z
            1   24     3         deletes  Ljava/util/List;
            2   24     4              sn  Ljava/util/List;
           11   12     5             end  I
           13   24     5             end  I
            4   10     6               i  I
           14   23     6               i  I
           16   21     7            item  Ljava/lang/Object;
           17   21     8    snapshotItem  Ljava/lang/Object;
    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=2, locals=5, args_size=4
        start local 0 // org.hibernate.collection.internal.PersistentList this
        start local 1 // java.lang.Object entry
        start local 2 // int i
        start local 3 // org.hibernate.type.Type elemType
         0: .line 461
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentList.getSnapshot:()Ljava/io/Serializable;
            checkcast java.util.List
            astore 4 /* sn */
        start local 4 // java.util.List sn
         1: .line 462
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentList.list:Ljava/util/List;
            iload 2 /* i */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            ifnull 3
            iload 2 /* i */
            aload 4 /* sn */
            invokeinterface java.util.List.size:()I
            if_icmpge 2
            aload 4 /* sn */
            iload 2 /* i */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            ifnonnull 3
      StackMap locals: java.util.List
      StackMap stack:
         2: iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         3: iconst_0
            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.PersistentList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lorg/hibernate/collection/internal/PersistentList;
            0    4     1     entry  Ljava/lang/Object;
            0    4     2         i  I
            0    4     3  elemType  Lorg/hibernate/type/Type;
            1    4     4        sn  Ljava/util/List;
    Exceptions:
      throws org.hibernate.HibernateException
    MethodParameters:
          Name  Flags
      entry     
      i         
      elemType  

  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=4, locals=5, args_size=4
        start local 0 // org.hibernate.collection.internal.PersistentList this
        start local 1 // java.lang.Object entry
        start local 2 // int i
        start local 3 // org.hibernate.type.Type elemType
         0: .line 467
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentList.getSnapshot:()Ljava/io/Serializable;
            checkcast java.util.List
            astore 4 /* sn */
        start local 4 // java.util.List sn
         1: .line 468
            iload 2 /* i */
            aload 4 /* sn */
            invokeinterface java.util.List.size:()I
            if_icmpge 6
         2: .line 469
            aload 4 /* sn */
            iload 2 /* i */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            ifnull 6
         3: .line 470
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentList.list:Ljava/util/List;
            iload 2 /* i */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            ifnull 6
         4: .line 471
            aload 3 /* elemType */
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentList.list:Ljava/util/List;
            iload 2 /* i */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            aload 4 /* sn */
            iload 2 /* i */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentList.getSession:()Lorg/hibernate/engine/spi/SessionImplementor;
            invokeinterface org.hibernate.type.Type.isDirty:(Ljava/lang/Object;Ljava/lang/Object;Lorg/hibernate/engine/spi/SessionImplementor;)Z
            ifeq 6
         5: .line 468
            iconst_1
            ireturn
      StackMap locals: java.util.List
      StackMap stack:
         6: iconst_0
            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.PersistentList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lorg/hibernate/collection/internal/PersistentList;
            0    7     1     entry  Ljava/lang/Object;
            0    7     2         i  I
            0    7     3  elemType  Lorg/hibernate/type/Type;
            1    7     4        sn  Ljava/util/List;
    Exceptions:
      throws org.hibernate.HibernateException
    MethodParameters:
          Name  Flags
      entry     
      i         
      elemType  

  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=1, locals=4, args_size=4
        start local 0 // org.hibernate.collection.internal.PersistentList this
        start local 1 // java.lang.Object entry
        start local 2 // int i
        start local 3 // org.hibernate.persister.collection.CollectionPersister persister
         0: .line 476
            iload 2 /* i */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            areturn
        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.PersistentList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/hibernate/collection/internal/PersistentList;
            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.PersistentList this
        start local 1 // java.lang.Object entry
         0: .line 481
            aload 1 /* entry */
            areturn
        end local 1 // java.lang.Object entry
        end local 0 // org.hibernate.collection.internal.PersistentList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/hibernate/collection/internal/PersistentList;
            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.PersistentList this
        start local 1 // java.lang.Object entry
        start local 2 // int i
         0: .line 486
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentList.getSnapshot:()Ljava/io/Serializable;
            checkcast java.util.List
            astore 3 /* sn */
        start local 3 // java.util.List sn
         1: .line 487
            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.PersistentList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/hibernate/collection/internal/PersistentList;
            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 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.PersistentList this
        start local 1 // java.lang.Object other
         0: .line 493
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentList.read:()V
         1: .line 494
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentList.list:Ljava/util/List;
            aload 1 /* other */
            invokeinterface java.util.List.equals:(Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.lang.Object other
        end local 0 // org.hibernate.collection.internal.PersistentList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/hibernate/collection/internal/PersistentList;
            0    2     1  other  Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      other  

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hibernate.collection.internal.PersistentList this
         0: .line 499
            aload 0 /* this */
            invokevirtual org.hibernate.collection.internal.PersistentList.read:()V
         1: .line 500
            aload 0 /* this */
            getfield org.hibernate.collection.internal.PersistentList.list:Ljava/util/List;
            invokeinterface java.util.List.hashCode:()I
            ireturn
        end local 0 // org.hibernate.collection.internal.PersistentList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/hibernate/collection/internal/PersistentList;

  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.PersistentList this
        start local 1 // java.lang.Object entry
        start local 2 // int i
         0: .line 505
            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.PersistentList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/hibernate/collection/internal/PersistentList;
            0    2     1  entry  Ljava/lang/Object;
            0    2     2      i  I
    MethodParameters:
       Name  Flags
      entry  
      i      
}
SourceFile: "PersistentList.java"
NestMembers:
  org.hibernate.collection.internal.PersistentList$Add  org.hibernate.collection.internal.PersistentList$Clear  org.hibernate.collection.internal.PersistentList$Remove  org.hibernate.collection.internal.PersistentList$Set  org.hibernate.collection.internal.PersistentList$SimpleAdd  org.hibernate.collection.internal.PersistentList$SimpleRemove
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 Add = org.hibernate.collection.internal.PersistentList$Add of org.hibernate.collection.internal.PersistentList
  final Clear = org.hibernate.collection.internal.PersistentList$Clear of org.hibernate.collection.internal.PersistentList
  final Remove = org.hibernate.collection.internal.PersistentList$Remove of org.hibernate.collection.internal.PersistentList
  final Set = org.hibernate.collection.internal.PersistentList$Set of org.hibernate.collection.internal.PersistentList
  final SimpleAdd = org.hibernate.collection.internal.PersistentList$SimpleAdd of org.hibernate.collection.internal.PersistentList
  final SimpleRemove = org.hibernate.collection.internal.PersistentList$SimpleRemove of org.hibernate.collection.internal.PersistentList