public class org.apache.xml.utils.ObjectVector implements java.lang.Cloneable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.xml.utils.ObjectVector
  super_class: java.lang.Object
{
  protected int m_blocksize;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected java.lang.Object[] m_map;
    descriptor: [Ljava/lang/Object;
    flags: (0x0004) ACC_PROTECTED

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

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

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.xml.utils.ObjectVector this
         0: .line 52
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 43
            aload 0 /* this */
            iconst_0
            putfield org.apache.xml.utils.ObjectVector.m_firstFree:I
         2: .line 55
            aload 0 /* this */
            bipush 32
            putfield org.apache.xml.utils.ObjectVector.m_blocksize:I
         3: .line 56
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_blocksize:I
            putfield org.apache.xml.utils.ObjectVector.m_mapSize:I
         4: .line 57
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_blocksize:I
            anewarray java.lang.Object
            putfield org.apache.xml.utils.ObjectVector.m_map:[Ljava/lang/Object;
         5: .line 58
            return
        end local 0 // org.apache.xml.utils.ObjectVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/xml/utils/ObjectVector;

  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.ObjectVector this
        start local 1 // int blocksize
         0: .line 65
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 43
            aload 0 /* this */
            iconst_0
            putfield org.apache.xml.utils.ObjectVector.m_firstFree:I
         2: .line 68
            aload 0 /* this */
            iload 1 /* blocksize */
            putfield org.apache.xml.utils.ObjectVector.m_blocksize:I
         3: .line 69
            aload 0 /* this */
            iload 1 /* blocksize */
            putfield org.apache.xml.utils.ObjectVector.m_mapSize:I
         4: .line 70
            aload 0 /* this */
            iload 1 /* blocksize */
            anewarray java.lang.Object
            putfield org.apache.xml.utils.ObjectVector.m_map:[Ljava/lang/Object;
         5: .line 71
            return
        end local 1 // int blocksize
        end local 0 // org.apache.xml.utils.ObjectVector this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    6     0       this  Lorg/apache/xml/utils/ObjectVector;
            0    6     1  blocksize  I
    MethodParameters:
           Name  Flags
      blocksize  

  public void <init>(int, int);
    descriptor: (II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.apache.xml.utils.ObjectVector this
        start local 1 // int blocksize
        start local 2 // int increaseSize
         0: .line 78
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 43
            aload 0 /* this */
            iconst_0
            putfield org.apache.xml.utils.ObjectVector.m_firstFree:I
         2: .line 81
            aload 0 /* this */
            iload 2 /* increaseSize */
            putfield org.apache.xml.utils.ObjectVector.m_blocksize:I
         3: .line 82
            aload 0 /* this */
            iload 1 /* blocksize */
            putfield org.apache.xml.utils.ObjectVector.m_mapSize:I
         4: .line 83
            aload 0 /* this */
            iload 1 /* blocksize */
            anewarray java.lang.Object
            putfield org.apache.xml.utils.ObjectVector.m_map:[Ljava/lang/Object;
         5: .line 84
            return
        end local 2 // int increaseSize
        end local 1 // int blocksize
        end local 0 // org.apache.xml.utils.ObjectVector this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    6     0          this  Lorg/apache/xml/utils/ObjectVector;
            0    6     1     blocksize  I
            0    6     2  increaseSize  I
    MethodParameters:
              Name  Flags
      blocksize     
      increaseSize  

  public void <init>(org.apache.xml.utils.ObjectVector);
    descriptor: (Lorg/apache/xml/utils/ObjectVector;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.apache.xml.utils.ObjectVector this
        start local 1 // org.apache.xml.utils.ObjectVector v
         0: .line 91
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 43
            aload 0 /* this */
            iconst_0
            putfield org.apache.xml.utils.ObjectVector.m_firstFree:I
         2: .line 93
            aload 0 /* this */
            aload 1 /* v */
            getfield org.apache.xml.utils.ObjectVector.m_mapSize:I
            anewarray java.lang.Object
            putfield org.apache.xml.utils.ObjectVector.m_map:[Ljava/lang/Object;
         3: .line 94
            aload 0 /* this */
            aload 1 /* v */
            getfield org.apache.xml.utils.ObjectVector.m_mapSize:I
            putfield org.apache.xml.utils.ObjectVector.m_mapSize:I
         4: .line 95
            aload 0 /* this */
            aload 1 /* v */
            getfield org.apache.xml.utils.ObjectVector.m_firstFree:I
            putfield org.apache.xml.utils.ObjectVector.m_firstFree:I
         5: .line 96
            aload 0 /* this */
            aload 1 /* v */
            getfield org.apache.xml.utils.ObjectVector.m_blocksize:I
            putfield org.apache.xml.utils.ObjectVector.m_blocksize:I
         6: .line 97
            aload 1 /* v */
            getfield org.apache.xml.utils.ObjectVector.m_map:[Ljava/lang/Object;
            iconst_0
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_map:[Ljava/lang/Object;
            iconst_0
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_firstFree:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         7: .line 98
            return
        end local 1 // org.apache.xml.utils.ObjectVector v
        end local 0 // org.apache.xml.utils.ObjectVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lorg/apache/xml/utils/ObjectVector;
            0    8     1     v  Lorg/apache/xml/utils/ObjectVector;
    MethodParameters:
      Name  Flags
      v     

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

  public final void setSize(int);
    descriptor: (I)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.xml.utils.ObjectVector this
        start local 1 // int sz
         0: .line 117
            aload 0 /* this */
            iload 1 /* sz */
            putfield org.apache.xml.utils.ObjectVector.m_firstFree:I
         1: .line 118
            return
        end local 1 // int sz
        end local 0 // org.apache.xml.utils.ObjectVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/xml/utils/ObjectVector;
            0    2     1    sz  I
    MethodParameters:
      Name  Flags
      sz    

  public final void addElement(java.lang.Object);
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=6, locals=3, args_size=2
        start local 0 // org.apache.xml.utils.ObjectVector this
        start local 1 // java.lang.Object value
         0: .line 129
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_firstFree:I
            iconst_1
            iadd
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_mapSize:I
            if_icmplt 5
         1: .line 131
            aload 0 /* this */
            dup
            getfield org.apache.xml.utils.ObjectVector.m_mapSize:I
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_blocksize:I
            iadd
            putfield org.apache.xml.utils.ObjectVector.m_mapSize:I
         2: .line 133
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_mapSize:I
            anewarray java.lang.Object
            astore 2 /* newMap */
        start local 2 // java.lang.Object[] newMap
         3: .line 135
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_map:[Ljava/lang/Object;
            iconst_0
            aload 2 /* newMap */
            iconst_0
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_firstFree:I
            iconst_1
            iadd
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         4: .line 137
            aload 0 /* this */
            aload 2 /* newMap */
            putfield org.apache.xml.utils.ObjectVector.m_map:[Ljava/lang/Object;
        end local 2 // java.lang.Object[] newMap
         5: .line 140
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_map:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_firstFree:I
            aload 1 /* value */
            aastore
         6: .line 142
            aload 0 /* this */
            dup
            getfield org.apache.xml.utils.ObjectVector.m_firstFree:I
            iconst_1
            iadd
            putfield org.apache.xml.utils.ObjectVector.m_firstFree:I
         7: .line 143
            return
        end local 1 // java.lang.Object value
        end local 0 // org.apache.xml.utils.ObjectVector this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lorg/apache/xml/utils/ObjectVector;
            0    8     1   value  Ljava/lang/Object;
            3    5     2  newMap  [Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      value  

  public final void addElements(java.lang.Object, int);
    descriptor: (Ljava/lang/Object;I)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=6, locals=4, args_size=3
        start local 0 // org.apache.xml.utils.ObjectVector this
        start local 1 // java.lang.Object value
        start local 2 // int numberOfElements
         0: .line 153
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_firstFree:I
            iload 2 /* numberOfElements */
            iadd
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_mapSize:I
            if_icmplt 5
         1: .line 155
            aload 0 /* this */
            dup
            getfield org.apache.xml.utils.ObjectVector.m_mapSize:I
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_blocksize:I
            iload 2 /* numberOfElements */
            iadd
            iadd
            putfield org.apache.xml.utils.ObjectVector.m_mapSize:I
         2: .line 157
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_mapSize:I
            anewarray java.lang.Object
            astore 3 /* newMap */
        start local 3 // java.lang.Object[] newMap
         3: .line 159
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_map:[Ljava/lang/Object;
            iconst_0
            aload 3 /* newMap */
            iconst_0
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_firstFree:I
            iconst_1
            iadd
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         4: .line 161
            aload 0 /* this */
            aload 3 /* newMap */
            putfield org.apache.xml.utils.ObjectVector.m_map:[Ljava/lang/Object;
        end local 3 // java.lang.Object[] newMap
         5: .line 164
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         6: goto 10
         7: .line 166
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_map:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_firstFree:I
            aload 1 /* value */
            aastore
         8: .line 167
            aload 0 /* this */
            dup
            getfield org.apache.xml.utils.ObjectVector.m_firstFree:I
            iconst_1
            iadd
            putfield org.apache.xml.utils.ObjectVector.m_firstFree:I
         9: .line 164
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 3 /* i */
            iload 2 /* numberOfElements */
            if_icmplt 7
        end local 3 // int i
        11: .line 169
            return
        end local 2 // int numberOfElements
        end local 1 // java.lang.Object value
        end local 0 // org.apache.xml.utils.ObjectVector this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   12     0              this  Lorg/apache/xml/utils/ObjectVector;
            0   12     1             value  Ljava/lang/Object;
            0   12     2  numberOfElements  I
            3    5     3            newMap  [Ljava/lang/Object;
            6   11     3                 i  I
    MethodParameters:
                  Name  Flags
      value             
      numberOfElements  

  public final void addElements(int);
    descriptor: (I)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=6, locals=3, args_size=2
        start local 0 // org.apache.xml.utils.ObjectVector this
        start local 1 // int numberOfElements
         0: .line 179
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_firstFree:I
            iload 1 /* numberOfElements */
            iadd
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_mapSize:I
            if_icmplt 5
         1: .line 181
            aload 0 /* this */
            dup
            getfield org.apache.xml.utils.ObjectVector.m_mapSize:I
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_blocksize:I
            iload 1 /* numberOfElements */
            iadd
            iadd
            putfield org.apache.xml.utils.ObjectVector.m_mapSize:I
         2: .line 183
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_mapSize:I
            anewarray java.lang.Object
            astore 2 /* newMap */
        start local 2 // java.lang.Object[] newMap
         3: .line 185
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_map:[Ljava/lang/Object;
            iconst_0
            aload 2 /* newMap */
            iconst_0
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_firstFree:I
            iconst_1
            iadd
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         4: .line 187
            aload 0 /* this */
            aload 2 /* newMap */
            putfield org.apache.xml.utils.ObjectVector.m_map:[Ljava/lang/Object;
        end local 2 // java.lang.Object[] newMap
         5: .line 190
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.apache.xml.utils.ObjectVector.m_firstFree:I
            iload 1 /* numberOfElements */
            iadd
            putfield org.apache.xml.utils.ObjectVector.m_firstFree:I
         6: .line 191
            return
        end local 1 // int numberOfElements
        end local 0 // org.apache.xml.utils.ObjectVector this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    7     0              this  Lorg/apache/xml/utils/ObjectVector;
            0    7     1  numberOfElements  I
            3    5     2            newMap  [Ljava/lang/Object;
    MethodParameters:
                  Name  Flags
      numberOfElements  

  public final void insertElementAt(java.lang.Object, int);
    descriptor: (Ljava/lang/Object;I)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=6, locals=4, args_size=3
        start local 0 // org.apache.xml.utils.ObjectVector this
        start local 1 // java.lang.Object value
        start local 2 // int at
         0: .line 206
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_firstFree:I
            iconst_1
            iadd
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_mapSize:I
            if_icmplt 5
         1: .line 208
            aload 0 /* this */
            dup
            getfield org.apache.xml.utils.ObjectVector.m_mapSize:I
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_blocksize:I
            iadd
            putfield org.apache.xml.utils.ObjectVector.m_mapSize:I
         2: .line 210
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_mapSize:I
            anewarray java.lang.Object
            astore 3 /* newMap */
        start local 3 // java.lang.Object[] newMap
         3: .line 212
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_map:[Ljava/lang/Object;
            iconst_0
            aload 3 /* newMap */
            iconst_0
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_firstFree:I
            iconst_1
            iadd
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         4: .line 214
            aload 0 /* this */
            aload 3 /* newMap */
            putfield org.apache.xml.utils.ObjectVector.m_map:[Ljava/lang/Object;
        end local 3 // java.lang.Object[] newMap
         5: .line 217
      StackMap locals:
      StackMap stack:
            iload 2 /* at */
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_firstFree:I
            iconst_1
            isub
            if_icmpgt 7
         6: .line 219
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_map:[Ljava/lang/Object;
            iload 2 /* at */
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_map:[Ljava/lang/Object;
            iload 2 /* at */
            iconst_1
            iadd
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_firstFree:I
            iload 2 /* at */
            isub
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         7: .line 222
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_map:[Ljava/lang/Object;
            iload 2 /* at */
            aload 1 /* value */
            aastore
         8: .line 224
            aload 0 /* this */
            dup
            getfield org.apache.xml.utils.ObjectVector.m_firstFree:I
            iconst_1
            iadd
            putfield org.apache.xml.utils.ObjectVector.m_firstFree:I
         9: .line 225
            return
        end local 2 // int at
        end local 1 // java.lang.Object value
        end local 0 // org.apache.xml.utils.ObjectVector this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   10     0    this  Lorg/apache/xml/utils/ObjectVector;
            0   10     1   value  Ljava/lang/Object;
            0   10     2      at  I
            3    5     3  newMap  [Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      value  
      at     

  public final void removeAllElements();
    descriptor: ()V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.apache.xml.utils.ObjectVector this
         0: .line 233
            iconst_0
            istore 1 /* i */
        start local 1 // int i
         1: goto 4
         2: .line 235
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_map:[Ljava/lang/Object;
            iload 1 /* i */
            aconst_null
            aastore
         3: .line 233
            iinc 1 /* i */ 1
      StackMap locals:
      StackMap stack:
         4: iload 1 /* i */
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_firstFree:I
            if_icmplt 2
        end local 1 // int i
         5: .line 238
            aload 0 /* this */
            iconst_0
            putfield org.apache.xml.utils.ObjectVector.m_firstFree:I
         6: .line 239
            return
        end local 0 // org.apache.xml.utils.ObjectVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/apache/xml/utils/ObjectVector;
            1    5     1     i  I

  public final boolean removeElement(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=6, locals=3, args_size=2
        start local 0 // org.apache.xml.utils.ObjectVector this
        start local 1 // java.lang.Object s
         0: .line 255
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         1: goto 9
         2: .line 257
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_map:[Ljava/lang/Object;
            iload 2 /* i */
            aaload
            aload 1 /* s */
            if_acmpne 8
         3: .line 259
            iload 2 /* i */
            iconst_1
            iadd
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_firstFree:I
            if_icmpge 5
         4: .line 260
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_map:[Ljava/lang/Object;
            iload 2 /* i */
            iconst_1
            iadd
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_map:[Ljava/lang/Object;
            iload 2 /* i */
            iconst_1
            isub
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_firstFree:I
            iload 2 /* i */
            isub
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
            goto 6
         5: .line 262
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_map:[Ljava/lang/Object;
            iload 2 /* i */
            aconst_null
            aastore
         6: .line 264
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.apache.xml.utils.ObjectVector.m_firstFree:I
            iconst_1
            isub
            putfield org.apache.xml.utils.ObjectVector.m_firstFree:I
         7: .line 266
            iconst_1
            ireturn
         8: .line 255
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         9: iload 2 /* i */
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_firstFree:I
            if_icmplt 2
        end local 2 // int i
        10: .line 270
            iconst_0
            ireturn
        end local 1 // java.lang.Object s
        end local 0 // org.apache.xml.utils.ObjectVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lorg/apache/xml/utils/ObjectVector;
            0   11     1     s  Ljava/lang/Object;
            1   10     2     i  I
    MethodParameters:
      Name  Flags
      s     

  public final void removeElementAt(int);
    descriptor: (I)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.apache.xml.utils.ObjectVector this
        start local 1 // int i
         0: .line 284
            iload 1 /* i */
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_firstFree:I
            if_icmple 2
         1: .line 285
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_map:[Ljava/lang/Object;
            iload 1 /* i */
            iconst_1
            iadd
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_map:[Ljava/lang/Object;
            iload 1 /* i */
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_firstFree:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
            goto 3
         2: .line 287
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_map:[Ljava/lang/Object;
            iload 1 /* i */
            aconst_null
            aastore
         3: .line 289
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.apache.xml.utils.ObjectVector.m_firstFree:I
            iconst_1
            isub
            putfield org.apache.xml.utils.ObjectVector.m_firstFree:I
         4: .line 290
            return
        end local 1 // int i
        end local 0 // org.apache.xml.utils.ObjectVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/apache/xml/utils/ObjectVector;
            0    5     1     i  I
    MethodParameters:
      Name  Flags
      i     

  public final void setElementAt(java.lang.Object, int);
    descriptor: (Ljava/lang/Object;I)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.apache.xml.utils.ObjectVector this
        start local 1 // java.lang.Object value
        start local 2 // int index
         0: .line 304
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_map:[Ljava/lang/Object;
            iload 2 /* index */
            aload 1 /* value */
            aastore
         1: .line 305
            return
        end local 2 // int index
        end local 1 // java.lang.Object value
        end local 0 // org.apache.xml.utils.ObjectVector this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/apache/xml/utils/ObjectVector;
            0    2     1  value  Ljava/lang/Object;
            0    2     2  index  I
    MethodParameters:
       Name  Flags
      value  
      index  

  public final java.lang.Object elementAt(int);
    descriptor: (I)Ljava/lang/Object;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.xml.utils.ObjectVector this
        start local 1 // int i
         0: .line 316
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_map:[Ljava/lang/Object;
            iload 1 /* i */
            aaload
            areturn
        end local 1 // int i
        end local 0 // org.apache.xml.utils.ObjectVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/xml/utils/ObjectVector;
            0    1     1     i  I
    MethodParameters:
      Name  Flags
      i     

  public final boolean contains(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.apache.xml.utils.ObjectVector this
        start local 1 // java.lang.Object s
         0: .line 329
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         1: goto 5
         2: .line 331
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_map:[Ljava/lang/Object;
            iload 2 /* i */
            aaload
            aload 1 /* s */
            if_acmpne 4
         3: .line 332
            iconst_1
            ireturn
         4: .line 329
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 2 /* i */
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_firstFree:I
            if_icmplt 2
        end local 2 // int i
         6: .line 335
            iconst_0
            ireturn
        end local 1 // java.lang.Object s
        end local 0 // org.apache.xml.utils.ObjectVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/apache/xml/utils/ObjectVector;
            0    7     1     s  Ljava/lang/Object;
            1    6     2     i  I
    MethodParameters:
      Name  Flags
      s     

  public final int indexOf(java.lang.Object, int);
    descriptor: (Ljava/lang/Object;I)I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // org.apache.xml.utils.ObjectVector this
        start local 1 // java.lang.Object elem
        start local 2 // int index
         0: .line 352
            iload 2 /* index */
            istore 3 /* i */
        start local 3 // int i
         1: goto 5
         2: .line 354
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_map:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            aload 1 /* elem */
            if_acmpne 4
         3: .line 355
            iload 3 /* i */
            ireturn
         4: .line 352
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 3 /* i */
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_firstFree:I
            if_icmplt 2
        end local 3 // int i
         6: .line 358
            ldc -2147483648
            ireturn
        end local 2 // int index
        end local 1 // java.lang.Object elem
        end local 0 // org.apache.xml.utils.ObjectVector this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lorg/apache/xml/utils/ObjectVector;
            0    7     1   elem  Ljava/lang/Object;
            0    7     2  index  I
            1    6     3      i  I
    MethodParameters:
       Name  Flags
      elem   
      index  

  public final int indexOf(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.apache.xml.utils.ObjectVector this
        start local 1 // java.lang.Object elem
         0: .line 374
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         1: goto 5
         2: .line 376
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_map:[Ljava/lang/Object;
            iload 2 /* i */
            aaload
            aload 1 /* elem */
            if_acmpne 4
         3: .line 377
            iload 2 /* i */
            ireturn
         4: .line 374
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 2 /* i */
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_firstFree:I
            if_icmplt 2
        end local 2 // int i
         6: .line 380
            ldc -2147483648
            ireturn
        end local 1 // java.lang.Object elem
        end local 0 // org.apache.xml.utils.ObjectVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/apache/xml/utils/ObjectVector;
            0    7     1  elem  Ljava/lang/Object;
            1    6     2     i  I
    MethodParameters:
      Name  Flags
      elem  

  public final int lastIndexOf(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.apache.xml.utils.ObjectVector this
        start local 1 // java.lang.Object elem
         0: .line 396
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_firstFree:I
            iconst_1
            isub
            istore 2 /* i */
        start local 2 // int i
         1: goto 5
         2: .line 398
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_map:[Ljava/lang/Object;
            iload 2 /* i */
            aaload
            aload 1 /* elem */
            if_acmpne 4
         3: .line 399
            iload 2 /* i */
            ireturn
         4: .line 396
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ -1
      StackMap locals:
      StackMap stack:
         5: iload 2 /* i */
            ifge 2
        end local 2 // int i
         6: .line 402
            ldc -2147483648
            ireturn
        end local 1 // java.lang.Object elem
        end local 0 // org.apache.xml.utils.ObjectVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/apache/xml/utils/ObjectVector;
            0    7     1  elem  Ljava/lang/Object;
            1    6     2     i  I
    MethodParameters:
      Name  Flags
      elem  

  public final void setToSize(int);
    descriptor: (I)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.apache.xml.utils.ObjectVector this
        start local 1 // int size
         0: .line 412
            iload 1 /* size */
            anewarray java.lang.Object
            astore 2 /* newMap */
        start local 2 // java.lang.Object[] newMap
         1: .line 414
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_map:[Ljava/lang/Object;
            iconst_0
            aload 2 /* newMap */
            iconst_0
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectVector.m_firstFree:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         2: .line 415
            aload 0 /* this */
            iload 1 /* size */
            putfield org.apache.xml.utils.ObjectVector.m_mapSize:I
         3: .line 417
            aload 0 /* this */
            aload 2 /* newMap */
            putfield org.apache.xml.utils.ObjectVector.m_map:[Ljava/lang/Object;
         4: .line 419
            return
        end local 2 // java.lang.Object[] newMap
        end local 1 // int size
        end local 0 // org.apache.xml.utils.ObjectVector this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lorg/apache/xml/utils/ObjectVector;
            0    5     1    size  I
            1    5     2  newMap  [Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      size  

  public java.lang.Object clone();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.xml.utils.ObjectVector this
         0: .line 429
            new org.apache.xml.utils.ObjectVector
            dup
            aload 0 /* this */
            invokespecial org.apache.xml.utils.ObjectVector.<init>:(Lorg/apache/xml/utils/ObjectVector;)V
            areturn
        end local 0 // org.apache.xml.utils.ObjectVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/xml/utils/ObjectVector;
    Exceptions:
      throws java.lang.CloneNotSupportedException
}
SourceFile: "ObjectVector.java"