public class org.apache.xml.utils.NodeVector implements java.io.Serializable, java.lang.Cloneable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.xml.utils.NodeVector
  super_class: java.lang.Object
{
  static final long serialVersionUID;
    descriptor: J
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: -713473092200731870

  private int m_blocksize;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int[] m_map;
    descriptor: [I
    flags: (0x0002) ACC_PRIVATE

  protected int m_firstFree;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  private int m_mapSize;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.xml.utils.NodeVector this
         0: .line 62
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 51
            aload 0 /* this */
            iconst_0
            putfield org.apache.xml.utils.NodeVector.m_firstFree:I
         2: .line 64
            aload 0 /* this */
            bipush 32
            putfield org.apache.xml.utils.NodeVector.m_blocksize:I
         3: .line 65
            aload 0 /* this */
            iconst_0
            putfield org.apache.xml.utils.NodeVector.m_mapSize:I
         4: .line 66
            return
        end local 0 // org.apache.xml.utils.NodeVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/apache/xml/utils/NodeVector;

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.xml.utils.NodeVector this
        start local 1 // int blocksize
         0: .line 73
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 51
            aload 0 /* this */
            iconst_0
            putfield org.apache.xml.utils.NodeVector.m_firstFree:I
         2: .line 75
            aload 0 /* this */
            iload 1 /* blocksize */
            putfield org.apache.xml.utils.NodeVector.m_blocksize:I
         3: .line 76
            aload 0 /* this */
            iconst_0
            putfield org.apache.xml.utils.NodeVector.m_mapSize:I
         4: .line 77
            return
        end local 1 // int blocksize
        end local 0 // org.apache.xml.utils.NodeVector this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lorg/apache/xml/utils/NodeVector;
            0    5     1  blocksize  I
    MethodParameters:
           Name  Flags
      blocksize  

  public java.lang.Object clone();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // org.apache.xml.utils.NodeVector this
         0: .line 89
            aload 0 /* this */
            invokespecial java.lang.Object.clone:()Ljava/lang/Object;
            checkcast org.apache.xml.utils.NodeVector
            astore 1 /* clone */
        start local 1 // org.apache.xml.utils.NodeVector clone
         1: .line 91
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            ifnull 4
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            aload 1 /* clone */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            if_acmpne 4
         2: .line 93
            aload 1 /* clone */
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            arraylength
            newarray 10
            putfield org.apache.xml.utils.NodeVector.m_map:[I
         3: .line 95
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            iconst_0
            aload 1 /* clone */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            iconst_0
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         4: .line 98
      StackMap locals: org.apache.xml.utils.NodeVector
      StackMap stack:
            aload 1 /* clone */
            areturn
        end local 1 // org.apache.xml.utils.NodeVector clone
        end local 0 // org.apache.xml.utils.NodeVector this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/apache/xml/utils/NodeVector;
            1    5     1  clone  Lorg/apache/xml/utils/NodeVector;
    Exceptions:
      throws java.lang.CloneNotSupportedException

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.xml.utils.NodeVector this
         0: .line 108
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_firstFree:I
            ireturn
        end local 0 // org.apache.xml.utils.NodeVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/xml/utils/NodeVector;

  public void addElement(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=2
        start local 0 // org.apache.xml.utils.NodeVector this
        start local 1 // int value
         0: .line 119
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_firstFree:I
            iconst_1
            iadd
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_mapSize:I
            if_icmplt 9
         1: .line 121
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            ifnonnull 5
         2: .line 123
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_blocksize:I
            newarray 10
            putfield org.apache.xml.utils.NodeVector.m_map:[I
         3: .line 124
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_blocksize:I
            putfield org.apache.xml.utils.NodeVector.m_mapSize:I
         4: .line 125
            goto 9
         5: .line 128
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.apache.xml.utils.NodeVector.m_mapSize:I
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_blocksize:I
            iadd
            putfield org.apache.xml.utils.NodeVector.m_mapSize:I
         6: .line 130
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_mapSize:I
            newarray 10
            astore 2 /* newMap */
        start local 2 // int[] newMap
         7: .line 132
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            iconst_0
            aload 2 /* newMap */
            iconst_0
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_firstFree:I
            iconst_1
            iadd
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         8: .line 134
            aload 0 /* this */
            aload 2 /* newMap */
            putfield org.apache.xml.utils.NodeVector.m_map:[I
        end local 2 // int[] newMap
         9: .line 138
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_firstFree:I
            iload 1 /* value */
            iastore
        10: .line 140
            aload 0 /* this */
            dup
            getfield org.apache.xml.utils.NodeVector.m_firstFree:I
            iconst_1
            iadd
            putfield org.apache.xml.utils.NodeVector.m_firstFree:I
        11: .line 141
            return
        end local 1 // int value
        end local 0 // org.apache.xml.utils.NodeVector this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   12     0    this  Lorg/apache/xml/utils/NodeVector;
            0   12     1   value  I
            7    9     2  newMap  [I
    MethodParameters:
       Name  Flags
      value  

  public final void push(int);
    descriptor: (I)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=6, locals=4, args_size=2
        start local 0 // org.apache.xml.utils.NodeVector this
        start local 1 // int value
         0: .line 151
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_firstFree:I
            istore 2 /* ff */
        start local 2 // int ff
         1: .line 153
            iload 2 /* ff */
            iconst_1
            iadd
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_mapSize:I
            if_icmplt 10
         2: .line 155
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            ifnonnull 6
         3: .line 157
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_blocksize:I
            newarray 10
            putfield org.apache.xml.utils.NodeVector.m_map:[I
         4: .line 158
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_blocksize:I
            putfield org.apache.xml.utils.NodeVector.m_mapSize:I
         5: .line 159
            goto 10
         6: .line 162
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.apache.xml.utils.NodeVector.m_mapSize:I
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_blocksize:I
            iadd
            putfield org.apache.xml.utils.NodeVector.m_mapSize:I
         7: .line 164
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_mapSize:I
            newarray 10
            astore 3 /* newMap */
        start local 3 // int[] newMap
         8: .line 166
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            iconst_0
            aload 3 /* newMap */
            iconst_0
            iload 2 /* ff */
            iconst_1
            iadd
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         9: .line 168
            aload 0 /* this */
            aload 3 /* newMap */
            putfield org.apache.xml.utils.NodeVector.m_map:[I
        end local 3 // int[] newMap
        10: .line 172
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            iload 2 /* ff */
            iload 1 /* value */
            iastore
        11: .line 174
            iinc 2 /* ff */ 1
        12: .line 176
            aload 0 /* this */
            iload 2 /* ff */
            putfield org.apache.xml.utils.NodeVector.m_firstFree:I
        13: .line 177
            return
        end local 2 // int ff
        end local 1 // int value
        end local 0 // org.apache.xml.utils.NodeVector this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   14     0    this  Lorg/apache/xml/utils/NodeVector;
            0   14     1   value  I
            1   14     2      ff  I
            8   10     3  newMap  [I
    MethodParameters:
       Name  Flags
      value  

  public final int pop();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.apache.xml.utils.NodeVector this
         0: .line 187
            aload 0 /* this */
            dup
            getfield org.apache.xml.utils.NodeVector.m_firstFree:I
            iconst_1
            isub
            putfield org.apache.xml.utils.NodeVector.m_firstFree:I
         1: .line 189
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_firstFree:I
            iaload
            istore 1 /* n */
        start local 1 // int n
         2: .line 191
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_firstFree:I
            iconst_m1
            iastore
         3: .line 193
            iload 1 /* n */
            ireturn
        end local 1 // int n
        end local 0 // org.apache.xml.utils.NodeVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/xml/utils/NodeVector;
            2    4     1     n  I

  public final int popAndTop();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.xml.utils.NodeVector this
         0: .line 205
            aload 0 /* this */
            dup
            getfield org.apache.xml.utils.NodeVector.m_firstFree:I
            iconst_1
            isub
            putfield org.apache.xml.utils.NodeVector.m_firstFree:I
         1: .line 207
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_firstFree:I
            iconst_m1
            iastore
         2: .line 209
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_firstFree:I
            ifne 3
            iconst_m1
            goto 4
      StackMap locals:
      StackMap stack:
         3: aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_firstFree:I
            iconst_1
            isub
            iaload
      StackMap locals:
      StackMap stack: int
         4: ireturn
        end local 0 // org.apache.xml.utils.NodeVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/apache/xml/utils/NodeVector;

  public final void popQuick();
    descriptor: ()V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.xml.utils.NodeVector this
         0: .line 218
            aload 0 /* this */
            dup
            getfield org.apache.xml.utils.NodeVector.m_firstFree:I
            iconst_1
            isub
            putfield org.apache.xml.utils.NodeVector.m_firstFree:I
         1: .line 220
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_firstFree:I
            iconst_m1
            iastore
         2: .line 221
            return
        end local 0 // org.apache.xml.utils.NodeVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/xml/utils/NodeVector;

  public final int peepOrNull();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.xml.utils.NodeVector this
         0: .line 232
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            ifnull 2
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_firstFree:I
            ifle 2
         1: .line 233
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_firstFree:I
            iconst_1
            isub
            iaload
            goto 3
      StackMap locals:
      StackMap stack:
         2: iconst_m1
         3: .line 232
      StackMap locals:
      StackMap stack: int
            ireturn
        end local 0 // org.apache.xml.utils.NodeVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/xml/utils/NodeVector;

  public final void pushPair(int, int);
    descriptor: (II)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // org.apache.xml.utils.NodeVector this
        start local 1 // int v1
        start local 2 // int v2
         0: .line 247
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            ifnonnull 4
         1: .line 249
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_blocksize:I
            newarray 10
            putfield org.apache.xml.utils.NodeVector.m_map:[I
         2: .line 250
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_blocksize:I
            putfield org.apache.xml.utils.NodeVector.m_mapSize:I
         3: .line 251
            goto 9
         4: .line 254
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_firstFree:I
            iconst_2
            iadd
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_mapSize:I
            if_icmplt 9
         5: .line 256
            aload 0 /* this */
            dup
            getfield org.apache.xml.utils.NodeVector.m_mapSize:I
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_blocksize:I
            iadd
            putfield org.apache.xml.utils.NodeVector.m_mapSize:I
         6: .line 258
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_mapSize:I
            newarray 10
            astore 3 /* newMap */
        start local 3 // int[] newMap
         7: .line 260
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            iconst_0
            aload 3 /* newMap */
            iconst_0
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_firstFree:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         8: .line 262
            aload 0 /* this */
            aload 3 /* newMap */
            putfield org.apache.xml.utils.NodeVector.m_map:[I
        end local 3 // int[] newMap
         9: .line 266
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_firstFree:I
            iload 1 /* v1 */
            iastore
        10: .line 267
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_firstFree:I
            iconst_1
            iadd
            iload 2 /* v2 */
            iastore
        11: .line 268
            aload 0 /* this */
            dup
            getfield org.apache.xml.utils.NodeVector.m_firstFree:I
            iconst_2
            iadd
            putfield org.apache.xml.utils.NodeVector.m_firstFree:I
        12: .line 269
            return
        end local 2 // int v2
        end local 1 // int v1
        end local 0 // org.apache.xml.utils.NodeVector this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   13     0    this  Lorg/apache/xml/utils/NodeVector;
            0   13     1      v1  I
            0   13     2      v2  I
            7    9     3  newMap  [I
    MethodParameters:
      Name  Flags
      v1    
      v2    

  public final void popPair();
    descriptor: ()V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.xml.utils.NodeVector this
         0: .line 279
            aload 0 /* this */
            dup
            getfield org.apache.xml.utils.NodeVector.m_firstFree:I
            iconst_2
            isub
            putfield org.apache.xml.utils.NodeVector.m_firstFree:I
         1: .line 280
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_firstFree:I
            iconst_m1
            iastore
         2: .line 281
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_firstFree:I
            iconst_1
            iadd
            iconst_m1
            iastore
         3: .line 282
            return
        end local 0 // org.apache.xml.utils.NodeVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/xml/utils/NodeVector;

  public final void setTail(int);
    descriptor: (I)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.xml.utils.NodeVector this
        start local 1 // int n
         0: .line 293
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_firstFree:I
            iconst_1
            isub
            iload 1 /* n */
            iastore
         1: .line 294
            return
        end local 1 // int n
        end local 0 // org.apache.xml.utils.NodeVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/xml/utils/NodeVector;
            0    2     1     n  I
    MethodParameters:
      Name  Flags
      n     

  public final void setTailSub1(int);
    descriptor: (I)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.xml.utils.NodeVector this
        start local 1 // int n
         0: .line 305
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_firstFree:I
            iconst_2
            isub
            iload 1 /* n */
            iastore
         1: .line 306
            return
        end local 1 // int n
        end local 0 // org.apache.xml.utils.NodeVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/xml/utils/NodeVector;
            0    2     1     n  I
    MethodParameters:
      Name  Flags
      n     

  public final int peepTail();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.xml.utils.NodeVector this
         0: .line 317
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_firstFree:I
            iconst_1
            isub
            iaload
            ireturn
        end local 0 // org.apache.xml.utils.NodeVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/xml/utils/NodeVector;

  public final int peepTailSub1();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.xml.utils.NodeVector this
         0: .line 329
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_firstFree:I
            iconst_2
            isub
            iaload
            ireturn
        end local 0 // org.apache.xml.utils.NodeVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/xml/utils/NodeVector;

  public void insertInOrder(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.apache.xml.utils.NodeVector this
        start local 1 // int value
         0: .line 340
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         1: goto 6
         2: .line 342
      StackMap locals: int
      StackMap stack:
            iload 1 /* value */
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            iload 2 /* i */
            iaload
            if_icmpge 5
         3: .line 344
            aload 0 /* this */
            iload 1 /* value */
            iload 2 /* i */
            invokevirtual org.apache.xml.utils.NodeVector.insertElementAt:(II)V
         4: .line 346
            return
         5: .line 340
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 2 /* i */
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_firstFree:I
            if_icmplt 2
        end local 2 // int i
         7: .line 350
            aload 0 /* this */
            iload 1 /* value */
            invokevirtual org.apache.xml.utils.NodeVector.addElement:(I)V
         8: .line 351
            return
        end local 1 // int value
        end local 0 // org.apache.xml.utils.NodeVector this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0   this  Lorg/apache/xml/utils/NodeVector;
            0    9     1  value  I
            1    7     2      i  I
    MethodParameters:
       Name  Flags
      value  

  public void insertElementAt(int, int);
    descriptor: (II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=3
        start local 0 // org.apache.xml.utils.NodeVector this
        start local 1 // int value
        start local 2 // int at
         0: .line 365
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            ifnonnull 4
         1: .line 367
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_blocksize:I
            newarray 10
            putfield org.apache.xml.utils.NodeVector.m_map:[I
         2: .line 368
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_blocksize:I
            putfield org.apache.xml.utils.NodeVector.m_mapSize:I
         3: .line 369
            goto 9
         4: .line 370
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_firstFree:I
            iconst_1
            iadd
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_mapSize:I
            if_icmplt 9
         5: .line 372
            aload 0 /* this */
            dup
            getfield org.apache.xml.utils.NodeVector.m_mapSize:I
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_blocksize:I
            iadd
            putfield org.apache.xml.utils.NodeVector.m_mapSize:I
         6: .line 374
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_mapSize:I
            newarray 10
            astore 3 /* newMap */
        start local 3 // int[] newMap
         7: .line 376
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            iconst_0
            aload 3 /* newMap */
            iconst_0
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_firstFree:I
            iconst_1
            iadd
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         8: .line 378
            aload 0 /* this */
            aload 3 /* newMap */
            putfield org.apache.xml.utils.NodeVector.m_map:[I
        end local 3 // int[] newMap
         9: .line 381
      StackMap locals:
      StackMap stack:
            iload 2 /* at */
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_firstFree:I
            iconst_1
            isub
            if_icmpgt 11
        10: .line 383
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            iload 2 /* at */
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            iload 2 /* at */
            iconst_1
            iadd
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_firstFree:I
            iload 2 /* at */
            isub
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        11: .line 386
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            iload 2 /* at */
            iload 1 /* value */
            iastore
        12: .line 388
            aload 0 /* this */
            dup
            getfield org.apache.xml.utils.NodeVector.m_firstFree:I
            iconst_1
            iadd
            putfield org.apache.xml.utils.NodeVector.m_firstFree:I
        13: .line 389
            return
        end local 2 // int at
        end local 1 // int value
        end local 0 // org.apache.xml.utils.NodeVector this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   14     0    this  Lorg/apache/xml/utils/NodeVector;
            0   14     1   value  I
            0   14     2      at  I
            7    9     3  newMap  [I
    MethodParameters:
       Name  Flags
      value  
      at     

  public void appendNodes(org.apache.xml.utils.NodeVector);
    descriptor: (Lorg/apache/xml/utils/NodeVector;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=2
        start local 0 // org.apache.xml.utils.NodeVector this
        start local 1 // org.apache.xml.utils.NodeVector nodes
         0: .line 399
            aload 1 /* nodes */
            invokevirtual org.apache.xml.utils.NodeVector.size:()I
            istore 2 /* nNodes */
        start local 2 // int nNodes
         1: .line 401
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            ifnonnull 5
         2: .line 403
            aload 0 /* this */
            iload 2 /* nNodes */
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_blocksize:I
            iadd
            putfield org.apache.xml.utils.NodeVector.m_mapSize:I
         3: .line 404
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_mapSize:I
            newarray 10
            putfield org.apache.xml.utils.NodeVector.m_map:[I
         4: .line 405
            goto 10
         5: .line 406
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_firstFree:I
            iload 2 /* nNodes */
            iadd
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_mapSize:I
            if_icmplt 10
         6: .line 408
            aload 0 /* this */
            dup
            getfield org.apache.xml.utils.NodeVector.m_mapSize:I
            iload 2 /* nNodes */
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_blocksize:I
            iadd
            iadd
            putfield org.apache.xml.utils.NodeVector.m_mapSize:I
         7: .line 410
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_mapSize:I
            newarray 10
            astore 3 /* newMap */
        start local 3 // int[] newMap
         8: .line 412
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            iconst_0
            aload 3 /* newMap */
            iconst_0
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_firstFree:I
            iload 2 /* nNodes */
            iadd
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         9: .line 414
            aload 0 /* this */
            aload 3 /* newMap */
            putfield org.apache.xml.utils.NodeVector.m_map:[I
        end local 3 // int[] newMap
        10: .line 417
      StackMap locals:
      StackMap stack:
            aload 1 /* nodes */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            iconst_0
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_firstFree:I
            iload 2 /* nNodes */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        11: .line 419
            aload 0 /* this */
            dup
            getfield org.apache.xml.utils.NodeVector.m_firstFree:I
            iload 2 /* nNodes */
            iadd
            putfield org.apache.xml.utils.NodeVector.m_firstFree:I
        12: .line 420
            return
        end local 2 // int nNodes
        end local 1 // org.apache.xml.utils.NodeVector nodes
        end local 0 // org.apache.xml.utils.NodeVector this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   13     0    this  Lorg/apache/xml/utils/NodeVector;
            0   13     1   nodes  Lorg/apache/xml/utils/NodeVector;
            1   13     2  nNodes  I
            8   10     3  newMap  [I
    MethodParameters:
       Name  Flags
      nodes  

  public void removeAllElements();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.apache.xml.utils.NodeVector this
         0: .line 431
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            ifnonnull 2
         1: .line 432
            return
         2: .line 434
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 1 /* i */
        start local 1 // int i
         3: goto 6
         4: .line 436
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            iload 1 /* i */
            iconst_m1
            iastore
         5: .line 434
            iinc 1 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 1 /* i */
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_firstFree:I
            if_icmplt 4
        end local 1 // int i
         7: .line 439
            aload 0 /* this */
            iconst_0
            putfield org.apache.xml.utils.NodeVector.m_firstFree:I
         8: .line 440
            return
        end local 0 // org.apache.xml.utils.NodeVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lorg/apache/xml/utils/NodeVector;
            3    7     1     i  I

  public void RemoveAllNoClear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.xml.utils.NodeVector this
         0: .line 448
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            ifnonnull 2
         1: .line 449
            return
         2: .line 451
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield org.apache.xml.utils.NodeVector.m_firstFree:I
         3: .line 452
            return
        end local 0 // org.apache.xml.utils.NodeVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/xml/utils/NodeVector;

  public boolean removeElement(int);
    descriptor: (I)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=2
        start local 0 // org.apache.xml.utils.NodeVector this
        start local 1 // int s
         0: .line 468
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            ifnonnull 2
         1: .line 469
            iconst_0
            ireturn
         2: .line 471
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         3: goto 12
         4: .line 473
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            iload 2 /* i */
            iaload
            istore 3 /* node */
        start local 3 // int node
         5: .line 475
            iload 3 /* node */
            iload 1 /* s */
            if_icmpne 11
         6: .line 477
            iload 2 /* i */
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_firstFree:I
            if_icmple 8
         7: .line 478
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            iload 2 /* i */
            iconst_1
            iadd
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            iload 2 /* i */
            iconst_1
            isub
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_firstFree:I
            iload 2 /* i */
            isub
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
            goto 9
         8: .line 480
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            iload 2 /* i */
            iconst_m1
            iastore
         9: .line 482
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.apache.xml.utils.NodeVector.m_firstFree:I
            iconst_1
            isub
            putfield org.apache.xml.utils.NodeVector.m_firstFree:I
        10: .line 484
            iconst_1
            ireturn
        end local 3 // int node
        11: .line 471
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        12: iload 2 /* i */
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_firstFree:I
            if_icmplt 4
        end local 2 // int i
        13: .line 488
            iconst_0
            ireturn
        end local 1 // int s
        end local 0 // org.apache.xml.utils.NodeVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   14     0  this  Lorg/apache/xml/utils/NodeVector;
            0   14     1     s  I
            3   13     2     i  I
            5   11     3  node  I
    MethodParameters:
      Name  Flags
      s     

  public void removeElementAt(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // org.apache.xml.utils.NodeVector this
        start local 1 // int i
         0: .line 502
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            ifnonnull 2
         1: .line 503
            return
         2: .line 505
      StackMap locals:
      StackMap stack:
            iload 1 /* i */
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_firstFree:I
            if_icmple 4
         3: .line 506
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            iload 1 /* i */
            iconst_1
            iadd
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            iload 1 /* i */
            iconst_1
            isub
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_firstFree:I
            iload 1 /* i */
            isub
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
            goto 5
         4: .line 508
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            iload 1 /* i */
            iconst_m1
            iastore
         5: .line 509
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int i
        end local 0 // org.apache.xml.utils.NodeVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/xml/utils/NodeVector;
            0    6     1     i  I
    MethodParameters:
      Name  Flags
      i     

  public void setElementAt(int, int);
    descriptor: (II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.apache.xml.utils.NodeVector this
        start local 1 // int node
        start local 2 // int index
         0: .line 524
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            ifnonnull 3
         1: .line 526
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_blocksize:I
            newarray 10
            putfield org.apache.xml.utils.NodeVector.m_map:[I
         2: .line 527
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_blocksize:I
            putfield org.apache.xml.utils.NodeVector.m_mapSize:I
         3: .line 530
      StackMap locals:
      StackMap stack:
            iload 2 /* index */
            iconst_m1
            if_icmpne 5
         4: .line 531
            aload 0 /* this */
            iload 1 /* node */
            invokevirtual org.apache.xml.utils.NodeVector.addElement:(I)V
         5: .line 533
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            iload 2 /* index */
            iload 1 /* node */
            iastore
         6: .line 534
            return
        end local 2 // int index
        end local 1 // int node
        end local 0 // org.apache.xml.utils.NodeVector this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lorg/apache/xml/utils/NodeVector;
            0    7     1   node  I
            0    7     2  index  I
    MethodParameters:
       Name  Flags
      node   
      index  

  public int elementAt(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.xml.utils.NodeVector this
        start local 1 // int i
         0: .line 546
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            ifnonnull 2
         1: .line 547
            iconst_m1
            ireturn
         2: .line 549
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            iload 1 /* i */
            iaload
            ireturn
        end local 1 // int i
        end local 0 // org.apache.xml.utils.NodeVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/xml/utils/NodeVector;
            0    3     1     i  I
    MethodParameters:
      Name  Flags
      i     

  public boolean contains(int);
    descriptor: (I)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.apache.xml.utils.NodeVector this
        start local 1 // int s
         0: .line 562
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            ifnonnull 2
         1: .line 563
            iconst_0
            ireturn
         2: .line 565
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         3: goto 8
         4: .line 567
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            iload 2 /* i */
            iaload
            istore 3 /* node */
        start local 3 // int node
         5: .line 569
            iload 3 /* node */
            iload 1 /* s */
            if_icmpne 7
         6: .line 570
            iconst_1
            ireturn
        end local 3 // int node
         7: .line 565
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         8: iload 2 /* i */
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_firstFree:I
            if_icmplt 4
        end local 2 // int i
         9: .line 573
            iconst_0
            ireturn
        end local 1 // int s
        end local 0 // org.apache.xml.utils.NodeVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lorg/apache/xml/utils/NodeVector;
            0   10     1     s  I
            3    9     2     i  I
            5    7     3  node  I
    MethodParameters:
      Name  Flags
      s     

  public int indexOf(int, int);
    descriptor: (II)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=3
        start local 0 // org.apache.xml.utils.NodeVector this
        start local 1 // int elem
        start local 2 // int index
         0: .line 590
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            ifnonnull 2
         1: .line 591
            iconst_m1
            ireturn
         2: .line 593
      StackMap locals:
      StackMap stack:
            iload 2 /* index */
            istore 3 /* i */
        start local 3 // int i
         3: goto 8
         4: .line 595
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            iload 3 /* i */
            iaload
            istore 4 /* node */
        start local 4 // int node
         5: .line 597
            iload 4 /* node */
            iload 1 /* elem */
            if_icmpne 7
         6: .line 598
            iload 3 /* i */
            ireturn
        end local 4 // int node
         7: .line 593
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         8: iload 3 /* i */
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_firstFree:I
            if_icmplt 4
        end local 3 // int i
         9: .line 601
            iconst_m1
            ireturn
        end local 2 // int index
        end local 1 // int elem
        end local 0 // org.apache.xml.utils.NodeVector this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Lorg/apache/xml/utils/NodeVector;
            0   10     1   elem  I
            0   10     2  index  I
            3    9     3      i  I
            5    7     4   node  I
    MethodParameters:
       Name  Flags
      elem   
      index  

  public int indexOf(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.apache.xml.utils.NodeVector this
        start local 1 // int elem
         0: .line 617
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            ifnonnull 2
         1: .line 618
            iconst_m1
            ireturn
         2: .line 620
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         3: goto 8
         4: .line 622
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            iload 2 /* i */
            iaload
            istore 3 /* node */
        start local 3 // int node
         5: .line 624
            iload 3 /* node */
            iload 1 /* elem */
            if_icmpne 7
         6: .line 625
            iload 2 /* i */
            ireturn
        end local 3 // int node
         7: .line 620
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         8: iload 2 /* i */
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_firstFree:I
            if_icmplt 4
        end local 2 // int i
         9: .line 628
            iconst_m1
            ireturn
        end local 1 // int elem
        end local 0 // org.apache.xml.utils.NodeVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lorg/apache/xml/utils/NodeVector;
            0   10     1  elem  I
            3    9     2     i  I
            5    7     3  node  I
    MethodParameters:
      Name  Flags
      elem  

  public void sort(int[], int, int);
    descriptor: ([III)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=9, args_size=4
        start local 0 // org.apache.xml.utils.NodeVector this
        start local 1 // int[] a
        start local 2 // int lo0
        start local 3 // int hi0
         0: .line 643
            iload 2 /* lo0 */
            istore 4 /* lo */
        start local 4 // int lo
         1: .line 644
            iload 3 /* hi0 */
            istore 5 /* hi */
        start local 5 // int hi
         2: .line 647
            iload 4 /* lo */
            iload 5 /* hi */
            if_icmplt 4
         3: .line 649
            return
         4: .line 651
      StackMap locals: int int
      StackMap stack:
            iload 4 /* lo */
            iload 5 /* hi */
            iconst_1
            isub
            if_icmpne 10
         5: .line 657
            aload 1 /* a */
            iload 4 /* lo */
            iaload
            aload 1 /* a */
            iload 5 /* hi */
            iaload
            if_icmple 9
         6: .line 659
            aload 1 /* a */
            iload 4 /* lo */
            iaload
            istore 6 /* T */
        start local 6 // int T
         7: .line 661
            aload 1 /* a */
            iload 4 /* lo */
            aload 1 /* a */
            iload 5 /* hi */
            iaload
            iastore
         8: .line 662
            aload 1 /* a */
            iload 5 /* hi */
            iload 6 /* T */
            iastore
        end local 6 // int T
         9: .line 665
      StackMap locals:
      StackMap stack:
            return
        10: .line 671
      StackMap locals:
      StackMap stack:
            iload 4 /* lo */
            iload 5 /* hi */
            iadd
            iconst_1
            iushr
            istore 6 /* mid */
        start local 6 // int mid
        11: .line 672
            aload 1 /* a */
            iload 6 /* mid */
            iaload
            istore 7 /* pivot */
        start local 7 // int pivot
        12: .line 674
            aload 1 /* a */
            iload 6 /* mid */
            aload 1 /* a */
            iload 5 /* hi */
            iaload
            iastore
        13: .line 675
            aload 1 /* a */
            iload 5 /* hi */
            iload 7 /* pivot */
            iastore
        14: .line 677
            goto 24
        15: .line 686
      StackMap locals: int int
      StackMap stack:
            iinc 4 /* lo */ 1
        16: .line 684
      StackMap locals:
      StackMap stack:
            aload 1 /* a */
            iload 4 /* lo */
            iaload
            iload 7 /* pivot */
            if_icmpgt 19
            iload 4 /* lo */
            iload 5 /* hi */
            if_icmplt 15
        17: .line 693
            goto 19
        18: .line 695
      StackMap locals:
      StackMap stack:
            iinc 5 /* hi */ -1
        19: .line 693
      StackMap locals:
      StackMap stack:
            iload 7 /* pivot */
            aload 1 /* a */
            iload 5 /* hi */
            iaload
            if_icmpgt 20
            iload 4 /* lo */
            iload 5 /* hi */
            if_icmplt 18
        20: .line 701
      StackMap locals:
      StackMap stack:
            iload 4 /* lo */
            iload 5 /* hi */
            if_icmpge 24
        21: .line 703
            aload 1 /* a */
            iload 4 /* lo */
            iaload
            istore 8 /* T */
        start local 8 // int T
        22: .line 705
            aload 1 /* a */
            iload 4 /* lo */
            aload 1 /* a */
            iload 5 /* hi */
            iaload
            iastore
        23: .line 706
            aload 1 /* a */
            iload 5 /* hi */
            iload 8 /* T */
            iastore
        end local 8 // int T
        24: .line 677
      StackMap locals:
      StackMap stack:
            iload 4 /* lo */
            iload 5 /* hi */
            if_icmplt 16
        25: .line 719
            aload 1 /* a */
            iload 3 /* hi0 */
            aload 1 /* a */
            iload 5 /* hi */
            iaload
            iastore
        26: .line 720
            aload 1 /* a */
            iload 5 /* hi */
            iload 7 /* pivot */
            iastore
        27: .line 727
            aload 0 /* this */
            aload 1 /* a */
            iload 2 /* lo0 */
            iload 4 /* lo */
            iconst_1
            isub
            invokevirtual org.apache.xml.utils.NodeVector.sort:([III)V
        28: .line 728
            aload 0 /* this */
            aload 1 /* a */
            iload 5 /* hi */
            iconst_1
            iadd
            iload 3 /* hi0 */
            invokevirtual org.apache.xml.utils.NodeVector.sort:([III)V
        29: .line 729
            return
        end local 7 // int pivot
        end local 6 // int mid
        end local 5 // int hi
        end local 4 // int lo
        end local 3 // int hi0
        end local 2 // int lo0
        end local 1 // int[] a
        end local 0 // org.apache.xml.utils.NodeVector this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   30     0   this  Lorg/apache/xml/utils/NodeVector;
            0   30     1      a  [I
            0   30     2    lo0  I
            0   30     3    hi0  I
            1   30     4     lo  I
            2   30     5     hi  I
            7    9     6      T  I
           11   30     6    mid  I
           12   30     7  pivot  I
           22   24     8      T  I
    Exceptions:
      throws java.lang.Exception
    MethodParameters:
      Name  Flags
      a     
      lo0   
      hi0   

  public void sort();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // org.apache.xml.utils.NodeVector this
         0: .line 738
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_map:[I
            iconst_0
            aload 0 /* this */
            getfield org.apache.xml.utils.NodeVector.m_firstFree:I
            iconst_1
            isub
            invokevirtual org.apache.xml.utils.NodeVector.sort:([III)V
         1: .line 739
            return
        end local 0 // org.apache.xml.utils.NodeVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/xml/utils/NodeVector;
    Exceptions:
      throws java.lang.Exception
}
SourceFile: "NodeVector.java"