public class org.hibernate.engine.spi.ExecutableList<E extends org.hibernate.action.spi.Executable, java.lang.Comparable, java.io.Serializable> implements java.io.Serializable, java.lang.Iterable<E>, java.io.Externalizable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.hibernate.engine.spi.ExecutableList
  super_class: java.lang.Object
{
  public static final int INIT_QUEUE_LIST_SIZE;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 5

  private final java.util.ArrayList<E> executables;
    descriptor: Ljava/util/ArrayList;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/ArrayList<TE;>;

  private final org.hibernate.engine.spi.ExecutableList$Sorter<E> sorter;
    descriptor: Lorg/hibernate/engine/spi/ExecutableList$Sorter;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lorg/hibernate/engine/spi/ExecutableList$Sorter<TE;>;

  private boolean sorted;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private transient java.util.Set<java.io.Serializable> querySpaces;
    descriptor: Ljava/util/Set;
    flags: (0x0082) ACC_PRIVATE, ACC_TRANSIENT
    Signature: Ljava/util/Set<Ljava/io/Serializable;>;

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.hibernate.engine.spi.ExecutableList this
         0: .line 88
            aload 0 /* this */
            iconst_5
            invokespecial org.hibernate.engine.spi.ExecutableList.<init>:(I)V
         1: .line 89
            return
        end local 0 // org.hibernate.engine.spi.ExecutableList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/hibernate/engine/spi/ExecutableList<TE;>;

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.hibernate.engine.spi.ExecutableList this
        start local 1 // int initialCapacity
         0: .line 97
            aload 0 /* this */
            iload 1 /* initialCapacity */
            aconst_null
            invokespecial org.hibernate.engine.spi.ExecutableList.<init>:(ILorg/hibernate/engine/spi/ExecutableList$Sorter;)V
         1: .line 98
            return
        end local 1 // int initialCapacity
        end local 0 // org.hibernate.engine.spi.ExecutableList this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    2     0             this  Lorg/hibernate/engine/spi/ExecutableList<TE;>;
            0    2     1  initialCapacity  I
    MethodParameters:
                 Name  Flags
      initialCapacity  

  public void <init>(org.hibernate.engine.spi.ExecutableList$Sorter<E>);
    descriptor: (Lorg/hibernate/engine/spi/ExecutableList$Sorter;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.hibernate.engine.spi.ExecutableList this
        start local 1 // org.hibernate.engine.spi.ExecutableList$Sorter sorter
         0: .line 106
            aload 0 /* this */
            iconst_5
            aload 1 /* sorter */
            invokespecial org.hibernate.engine.spi.ExecutableList.<init>:(ILorg/hibernate/engine/spi/ExecutableList$Sorter;)V
         1: .line 107
            return
        end local 1 // org.hibernate.engine.spi.ExecutableList$Sorter sorter
        end local 0 // org.hibernate.engine.spi.ExecutableList this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/hibernate/engine/spi/ExecutableList<TE;>;
            0    2     1  sorter  Lorg/hibernate/engine/spi/ExecutableList$Sorter<TE;>;
    Signature: (Lorg/hibernate/engine/spi/ExecutableList$Sorter<TE;>;)V
    MethodParameters:
        Name  Flags
      sorter  

  public void <init>(int, org.hibernate.engine.spi.ExecutableList$Sorter<E>);
    descriptor: (ILorg/hibernate/engine/spi/ExecutableList$Sorter;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.hibernate.engine.spi.ExecutableList this
        start local 1 // int initialCapacity
        start local 2 // org.hibernate.engine.spi.ExecutableList$Sorter sorter
         0: .line 115
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 116
            aload 0 /* this */
            aload 2 /* sorter */
            putfield org.hibernate.engine.spi.ExecutableList.sorter:Lorg/hibernate/engine/spi/ExecutableList$Sorter;
         2: .line 117
            aload 0 /* this */
            new java.util.ArrayList
            dup
            iload 1 /* initialCapacity */
            invokespecial java.util.ArrayList.<init>:(I)V
            putfield org.hibernate.engine.spi.ExecutableList.executables:Ljava/util/ArrayList;
         3: .line 118
            aload 0 /* this */
            new java.util.HashSet
            dup
            invokespecial java.util.HashSet.<init>:()V
            putfield org.hibernate.engine.spi.ExecutableList.querySpaces:Ljava/util/Set;
         4: .line 119
            aload 0 /* this */
            iconst_1
            putfield org.hibernate.engine.spi.ExecutableList.sorted:Z
         5: .line 120
            return
        end local 2 // org.hibernate.engine.spi.ExecutableList$Sorter sorter
        end local 1 // int initialCapacity
        end local 0 // org.hibernate.engine.spi.ExecutableList this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    6     0             this  Lorg/hibernate/engine/spi/ExecutableList<TE;>;
            0    6     1  initialCapacity  I
            0    6     2           sorter  Lorg/hibernate/engine/spi/ExecutableList$Sorter<TE;>;
    Signature: (ILorg/hibernate/engine/spi/ExecutableList$Sorter<TE;>;)V
    MethodParameters:
                 Name  Flags
      initialCapacity  
      sorter           

  public java.util.Set<java.io.Serializable> getQuerySpaces();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=1
        start local 0 // org.hibernate.engine.spi.ExecutableList this
         0: .line 128
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.querySpaces:Ljava/util/Set;
            ifnonnull 8
         1: .line 129
            aload 0 /* this */
            new java.util.HashSet
            dup
            invokespecial java.util.HashSet.<init>:()V
            putfield org.hibernate.engine.spi.ExecutableList.querySpaces:Ljava/util/Set;
         2: .line 130
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.executables:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.iterator:()Ljava/util/Iterator;
            astore 2
            goto 7
      StackMap locals: org.hibernate.engine.spi.ExecutableList top java.util.Iterator
      StackMap stack:
         3: aload 2
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.hibernate.action.spi.Executable
            astore 1 /* e */
        start local 1 // org.hibernate.action.spi.Executable e
         4: .line 131
            aload 1 /* e */
            invokeinterface org.hibernate.action.spi.Executable.getPropertySpaces:()[Ljava/io/Serializable;
            astore 3 /* propertySpaces */
        start local 3 // java.io.Serializable[] propertySpaces
         5: .line 132
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.querySpaces:Ljava/util/Set;
            ifnull 7
            aload 3 /* propertySpaces */
            ifnull 7
         6: .line 133
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.querySpaces:Ljava/util/Set;
            aload 3 /* propertySpaces */
            invokestatic java.util.Collections.addAll:(Ljava/util/Collection;[Ljava/lang/Object;)Z
            pop
        end local 3 // java.io.Serializable[] propertySpaces
        end local 1 // org.hibernate.action.spi.Executable e
         7: .line 130
      StackMap locals:
      StackMap stack:
            aload 2
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         8: .line 137
      StackMap locals: org.hibernate.engine.spi.ExecutableList
      StackMap stack:
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.querySpaces:Ljava/util/Set;
            areturn
        end local 0 // org.hibernate.engine.spi.ExecutableList this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    9     0            this  Lorg/hibernate/engine/spi/ExecutableList<TE;>;
            4    7     1               e  TE;
            5    7     3  propertySpaces  [Ljava/io/Serializable;
    Signature: ()Ljava/util/Set<Ljava/io/Serializable;>;

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hibernate.engine.spi.ExecutableList this
         0: .line 144
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.executables:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.isEmpty:()Z
            ireturn
        end local 0 // org.hibernate.engine.spi.ExecutableList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hibernate/engine/spi/ExecutableList<TE;>;

  public E remove();
    descriptor: (I)Lorg/hibernate/action/spi/Executable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.hibernate.engine.spi.ExecutableList this
        start local 1 // int index
         0: .line 157
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.executables:Ljava/util/ArrayList;
            iload 1 /* index */
            invokevirtual java.util.ArrayList.remove:(I)Ljava/lang/Object;
            checkcast org.hibernate.action.spi.Executable
            astore 2 /* e */
        start local 2 // org.hibernate.action.spi.Executable e
         1: .line 165
            aload 2 /* e */
            invokeinterface org.hibernate.action.spi.Executable.getPropertySpaces:()[Ljava/io/Serializable;
            ifnull 3
            aload 2 /* e */
            invokeinterface org.hibernate.action.spi.Executable.getPropertySpaces:()[Ljava/io/Serializable;
            arraylength
            ifle 3
         2: .line 166
            aload 0 /* this */
            aconst_null
            putfield org.hibernate.engine.spi.ExecutableList.querySpaces:Ljava/util/Set;
         3: .line 168
      StackMap locals: org.hibernate.action.spi.Executable
      StackMap stack:
            aload 2 /* e */
            areturn
        end local 2 // org.hibernate.action.spi.Executable e
        end local 1 // int index
        end local 0 // org.hibernate.engine.spi.ExecutableList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/hibernate/engine/spi/ExecutableList<TE;>;
            0    4     1  index  I
            1    4     2      e  TE;
    Signature: (I)TE;
    MethodParameters:
       Name  Flags
      index  

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.hibernate.engine.spi.ExecutableList this
         0: .line 175
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.executables:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.clear:()V
         1: .line 176
            aload 0 /* this */
            aconst_null
            putfield org.hibernate.engine.spi.ExecutableList.querySpaces:Ljava/util/Set;
         2: .line 177
            aload 0 /* this */
            iconst_1
            putfield org.hibernate.engine.spi.ExecutableList.sorted:Z
         3: .line 178
            return
        end local 0 // org.hibernate.engine.spi.ExecutableList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/hibernate/engine/spi/ExecutableList<TE;>;

  public void removeLastN(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // org.hibernate.engine.spi.ExecutableList this
        start local 1 // int n
         0: .line 186
            iload 1 /* n */
            ifle 9
         1: .line 187
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.executables:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            istore 2 /* size */
        start local 2 // int size
         2: .line 188
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.executables:Ljava/util/ArrayList;
            iload 2 /* size */
            iload 1 /* n */
            isub
            iload 2 /* size */
            invokevirtual java.util.ArrayList.subList:(II)Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 4
            goto 7
      StackMap locals: org.hibernate.engine.spi.ExecutableList int int top java.util.Iterator
      StackMap stack:
         3: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.hibernate.action.spi.Executable
            astore 3 /* e */
        start local 3 // org.hibernate.action.spi.Executable e
         4: .line 189
            aload 3 /* e */
            invokeinterface org.hibernate.action.spi.Executable.getPropertySpaces:()[Ljava/io/Serializable;
            ifnull 7
            aload 3 /* e */
            invokeinterface org.hibernate.action.spi.Executable.getPropertySpaces:()[Ljava/io/Serializable;
            arraylength
            ifle 7
         5: .line 191
            aload 0 /* this */
            aconst_null
            putfield org.hibernate.engine.spi.ExecutableList.querySpaces:Ljava/util/Set;
         6: .line 192
            goto 8
        end local 3 // org.hibernate.action.spi.Executable e
         7: .line 188
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         8: .line 195
      StackMap locals: org.hibernate.engine.spi.ExecutableList int int
      StackMap stack:
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.executables:Ljava/util/ArrayList;
            iload 2 /* size */
            iload 1 /* n */
            isub
            iload 2 /* size */
            invokevirtual java.util.ArrayList.subList:(II)Ljava/util/List;
            invokeinterface java.util.List.clear:()V
        end local 2 // int size
         9: .line 197
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int n
        end local 0 // org.hibernate.engine.spi.ExecutableList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lorg/hibernate/engine/spi/ExecutableList<TE;>;
            0   10     1     n  I
            2    9     2  size  I
            4    7     3     e  Lorg/hibernate/action/spi/Executable;
    MethodParameters:
      Name  Flags
      n     

  public boolean add();
    descriptor: (Lorg/hibernate/action/spi/Executable;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // org.hibernate.engine.spi.ExecutableList this
        start local 1 // org.hibernate.action.spi.Executable executable
         0: .line 207
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.sorter:Lorg/hibernate/engine/spi/ExecutableList$Sorter;
            ifnonnull 1
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.executables:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.isEmpty:()Z
            ifeq 2
      StackMap locals:
      StackMap stack:
         1: aconst_null
            goto 3
      StackMap locals:
      StackMap stack:
         2: aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.executables:Ljava/util/ArrayList;
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.executables:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            iconst_1
            isub
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast org.hibernate.action.spi.Executable
      StackMap locals:
      StackMap stack: org.hibernate.action.spi.Executable
         3: astore 2 /* previousLast */
        start local 2 // org.hibernate.action.spi.Executable previousLast
         4: .line 208
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.executables:Ljava/util/ArrayList;
            aload 1 /* executable */
            invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            istore 3 /* added */
        start local 3 // boolean added
         5: .line 210
            iload 3 /* added */
            ifne 7
         6: .line 211
            iconst_0
            ireturn
         7: .line 215
      StackMap locals: org.hibernate.action.spi.Executable int
      StackMap stack:
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.sorter:Lorg/hibernate/engine/spi/ExecutableList$Sorter;
            ifnull 10
         8: .line 217
            aload 0 /* this */
            iconst_0
            putfield org.hibernate.engine.spi.ExecutableList.sorted:Z
         9: .line 218
            goto 12
        10: .line 222
      StackMap locals:
      StackMap stack:
            aload 2 /* previousLast */
            ifnull 12
            aload 2 /* previousLast */
            checkcast java.lang.Comparable
            checkcast java.lang.Comparable
            aload 1 /* executable */
            invokeinterface java.lang.Comparable.compareTo:(Ljava/lang/Object;)I
            ifle 12
        11: .line 223
            aload 0 /* this */
            iconst_0
            putfield org.hibernate.engine.spi.ExecutableList.sorted:Z
        12: .line 227
      StackMap locals:
      StackMap stack:
            aload 1 /* executable */
            invokeinterface org.hibernate.action.spi.Executable.getPropertySpaces:()[Ljava/io/Serializable;
            astore 4 /* querySpaces */
        start local 4 // java.io.Serializable[] querySpaces
        13: .line 228
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.querySpaces:Ljava/util/Set;
            ifnull 15
            aload 4 /* querySpaces */
            ifnull 15
        14: .line 229
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.querySpaces:Ljava/util/Set;
            aload 4 /* querySpaces */
            invokestatic java.util.Collections.addAll:(Ljava/util/Collection;[Ljava/lang/Object;)Z
            pop
        15: .line 232
      StackMap locals: java.io.Serializable[]
      StackMap stack:
            iload 3 /* added */
            ireturn
        end local 4 // java.io.Serializable[] querySpaces
        end local 3 // boolean added
        end local 2 // org.hibernate.action.spi.Executable previousLast
        end local 1 // org.hibernate.action.spi.Executable executable
        end local 0 // org.hibernate.engine.spi.ExecutableList this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   16     0          this  Lorg/hibernate/engine/spi/ExecutableList<TE;>;
            0   16     1    executable  TE;
            4   16     2  previousLast  TE;
            5   16     3         added  Z
           13   16     4   querySpaces  [Ljava/io/Serializable;
    Signature: (TE;)Z
    MethodParameters:
            Name  Flags
      executable  

  public void sort();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.hibernate.engine.spi.ExecutableList this
         0: .line 240
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.sorted:Z
            ifeq 2
         1: .line 241
            return
         2: .line 244
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.sorter:Lorg/hibernate/engine/spi/ExecutableList$Sorter;
            ifnull 5
         3: .line 245
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.sorter:Lorg/hibernate/engine/spi/ExecutableList$Sorter;
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.executables:Ljava/util/ArrayList;
            invokeinterface org.hibernate.engine.spi.ExecutableList$Sorter.sort:(Ljava/util/List;)V
         4: .line 246
            goto 6
         5: .line 248
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.executables:Ljava/util/ArrayList;
            invokestatic java.util.Collections.sort:(Ljava/util/List;)V
         6: .line 250
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield org.hibernate.engine.spi.ExecutableList.sorted:Z
         7: .line 251
            return
        end local 0 // org.hibernate.engine.spi.ExecutableList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lorg/hibernate/engine/spi/ExecutableList<TE;>;

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hibernate.engine.spi.ExecutableList this
         0: .line 257
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.executables:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            ireturn
        end local 0 // org.hibernate.engine.spi.ExecutableList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hibernate/engine/spi/ExecutableList<TE;>;

  public E get();
    descriptor: (I)Lorg/hibernate/action/spi/Executable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hibernate.engine.spi.ExecutableList this
        start local 1 // int index
         0: .line 266
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.executables:Ljava/util/ArrayList;
            iload 1 /* index */
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast org.hibernate.action.spi.Executable
            areturn
        end local 1 // int index
        end local 0 // org.hibernate.engine.spi.ExecutableList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/hibernate/engine/spi/ExecutableList<TE;>;
            0    1     1  index  I
    Signature: (I)TE;
    MethodParameters:
       Name  Flags
      index  

  public java.util.Iterator<E> iterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hibernate.engine.spi.ExecutableList this
         0: .line 276
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.executables:Ljava/util/ArrayList;
            invokestatic java.util.Collections.unmodifiableList:(Ljava/util/List;)Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            areturn
        end local 0 // org.hibernate.engine.spi.ExecutableList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hibernate/engine/spi/ExecutableList<TE;>;
    Signature: ()Ljava/util/Iterator<TE;>;

  public void writeExternal(java.io.ObjectOutput);
    descriptor: (Ljava/io/ObjectOutput;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.hibernate.engine.spi.ExecutableList this
        start local 1 // java.io.ObjectOutput oos
         0: .line 286
            aload 1 /* oos */
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.sorted:Z
            invokeinterface java.io.ObjectOutput.writeBoolean:(Z)V
         1: .line 288
            aload 1 /* oos */
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.executables:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            invokeinterface java.io.ObjectOutput.writeInt:(I)V
         2: .line 289
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.executables:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.iterator:()Ljava/util/Iterator;
            astore 3
            goto 5
      StackMap locals: org.hibernate.engine.spi.ExecutableList java.io.ObjectOutput top java.util.Iterator
      StackMap stack:
         3: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.hibernate.action.spi.Executable
            astore 2 /* e */
        start local 2 // org.hibernate.action.spi.Executable e
         4: .line 290
            aload 1 /* oos */
            aload 2 /* e */
            invokeinterface java.io.ObjectOutput.writeObject:(Ljava/lang/Object;)V
        end local 2 // org.hibernate.action.spi.Executable e
         5: .line 289
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         6: .line 294
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.querySpaces:Ljava/util/Set;
            ifnonnull 9
         7: .line 295
            aload 1 /* oos */
            iconst_m1
            invokeinterface java.io.ObjectOutput.writeInt:(I)V
         8: .line 296
            goto 14
         9: .line 298
      StackMap locals: org.hibernate.engine.spi.ExecutableList java.io.ObjectOutput
      StackMap stack:
            aload 1 /* oos */
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.querySpaces:Ljava/util/Set;
            invokeinterface java.util.Set.size:()I
            invokeinterface java.io.ObjectOutput.writeInt:(I)V
        10: .line 300
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.querySpaces:Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 3
            goto 13
      StackMap locals: org.hibernate.engine.spi.ExecutableList java.io.ObjectOutput top java.util.Iterator
      StackMap stack:
        11: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.io.Serializable
            astore 2 /* querySpace */
        start local 2 // java.io.Serializable querySpace
        12: .line 301
            aload 1 /* oos */
            aload 2 /* querySpace */
            invokevirtual java.lang.Object.toString:()Ljava/lang/String;
            invokeinterface java.io.ObjectOutput.writeUTF:(Ljava/lang/String;)V
        end local 2 // java.io.Serializable querySpace
        13: .line 300
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 11
        14: .line 304
      StackMap locals: org.hibernate.engine.spi.ExecutableList java.io.ObjectOutput
      StackMap stack:
            return
        end local 1 // java.io.ObjectOutput oos
        end local 0 // org.hibernate.engine.spi.ExecutableList this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   15     0        this  Lorg/hibernate/engine/spi/ExecutableList<TE;>;
            0   15     1         oos  Ljava/io/ObjectOutput;
            4    5     2           e  TE;
           12   13     2  querySpace  Ljava/io/Serializable;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      oos   

  public void readExternal(java.io.ObjectInput);
    descriptor: (Ljava/io/ObjectInput;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // org.hibernate.engine.spi.ExecutableList this
        start local 1 // java.io.ObjectInput in
         0: .line 314
            aload 0 /* this */
            aload 1 /* in */
            invokeinterface java.io.ObjectInput.readBoolean:()Z
            putfield org.hibernate.engine.spi.ExecutableList.sorted:Z
         1: .line 316
            aload 1 /* in */
            invokeinterface java.io.ObjectInput.readInt:()I
            istore 2 /* numberOfExecutables */
        start local 2 // int numberOfExecutables
         2: .line 317
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.executables:Ljava/util/ArrayList;
            iload 2 /* numberOfExecutables */
            invokevirtual java.util.ArrayList.ensureCapacity:(I)V
         3: .line 318
            iload 2 /* numberOfExecutables */
            ifle 10
         4: .line 319
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         5: goto 9
         6: .line 320
      StackMap locals: int int
      StackMap stack:
            aload 1 /* in */
            invokeinterface java.io.ObjectInput.readObject:()Ljava/lang/Object;
            checkcast org.hibernate.action.spi.Executable
            astore 4 /* e */
        start local 4 // org.hibernate.action.spi.Executable e
         7: .line 321
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.executables:Ljava/util/ArrayList;
            aload 4 /* e */
            invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            pop
        end local 4 // org.hibernate.action.spi.Executable e
         8: .line 319
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         9: iload 3 /* i */
            iload 2 /* numberOfExecutables */
            if_icmplt 6
        end local 3 // int i
        10: .line 325
      StackMap locals:
      StackMap stack:
            aload 1 /* in */
            invokeinterface java.io.ObjectInput.readInt:()I
            istore 3 /* numberOfQuerySpaces */
        start local 3 // int numberOfQuerySpaces
        11: .line 326
            iload 3 /* numberOfQuerySpaces */
            ifge 14
        12: .line 327
            aload 0 /* this */
            aconst_null
            putfield org.hibernate.engine.spi.ExecutableList.querySpaces:Ljava/util/Set;
        13: .line 328
            goto 20
        14: .line 330
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            new java.util.HashSet
            dup
            iload 3 /* numberOfQuerySpaces */
            invokestatic org.hibernate.internal.util.collections.CollectionHelper.determineProperSizing:(I)I
            invokespecial java.util.HashSet.<init>:(I)V
            putfield org.hibernate.engine.spi.ExecutableList.querySpaces:Ljava/util/Set;
        15: .line 331
            iconst_0
            istore 4 /* i */
        start local 4 // int i
        16: goto 19
        17: .line 332
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.querySpaces:Ljava/util/Set;
            aload 1 /* in */
            invokeinterface java.io.ObjectInput.readUTF:()Ljava/lang/String;
            invokeinterface java.util.Set.add:(Ljava/lang/Object;)Z
            pop
        18: .line 331
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        19: iload 4 /* i */
            iload 3 /* numberOfQuerySpaces */
            if_icmplt 17
        end local 4 // int i
        20: .line 335
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int numberOfQuerySpaces
        end local 2 // int numberOfExecutables
        end local 1 // java.io.ObjectInput in
        end local 0 // org.hibernate.engine.spi.ExecutableList this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0   21     0                 this  Lorg/hibernate/engine/spi/ExecutableList<TE;>;
            0   21     1                   in  Ljava/io/ObjectInput;
            2   21     2  numberOfExecutables  I
            5   10     3                    i  I
            7    8     4                    e  TE;
           11   21     3  numberOfQuerySpaces  I
           16   20     4                    i  I
    Exceptions:
      throws java.io.IOException, java.lang.ClassNotFoundException
    MethodParameters:
      Name  Flags
      in    

  public void afterDeserialize(org.hibernate.engine.spi.SessionImplementor);
    descriptor: (Lorg/hibernate/engine/spi/SessionImplementor;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.hibernate.engine.spi.ExecutableList this
        start local 1 // org.hibernate.engine.spi.SessionImplementor session
         0: .line 343
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.executables:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.iterator:()Ljava/util/Iterator;
            astore 3
            goto 3
      StackMap locals: org.hibernate.engine.spi.ExecutableList org.hibernate.engine.spi.SessionImplementor top java.util.Iterator
      StackMap stack:
         1: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.hibernate.action.spi.Executable
            astore 2 /* e */
        start local 2 // org.hibernate.action.spi.Executable e
         2: .line 344
            aload 2 /* e */
            aload 1 /* session */
            invokeinterface org.hibernate.action.spi.Executable.afterDeserialize:(Lorg/hibernate/engine/spi/SessionImplementor;)V
        end local 2 // org.hibernate.action.spi.Executable e
         3: .line 343
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 1
         4: .line 346
            return
        end local 1 // org.hibernate.engine.spi.SessionImplementor session
        end local 0 // org.hibernate.engine.spi.ExecutableList this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lorg/hibernate/engine/spi/ExecutableList<TE;>;
            0    5     1  session  Lorg/hibernate/engine/spi/SessionImplementor;
            2    3     2        e  TE;
    MethodParameters:
         Name  Flags
      session  
}
Signature: <E::Lorg/hibernate/action/spi/Executable;:Ljava/lang/Comparable;:Ljava/io/Serializable;>Ljava/lang/Object;Ljava/io/Serializable;Ljava/lang/Iterable<TE;>;Ljava/io/Externalizable;
SourceFile: "ExecutableList.java"
NestMembers:
  org.hibernate.engine.spi.ExecutableList$Sorter
InnerClasses:
  public abstract Sorter = org.hibernate.engine.spi.ExecutableList$Sorter of org.hibernate.engine.spi.ExecutableList