public final class org.eclipse.jdt.internal.compiler.util.ObjectVector implements java.lang.Iterable<java.lang.Object>
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: org.eclipse.jdt.internal.compiler.util.ObjectVector
  super_class: java.lang.Object
{
  static int INITIAL_SIZE;
    descriptor: I
    flags: (0x0008) ACC_STATIC

  public int size;
    descriptor: I
    flags: (0x0001) ACC_PUBLIC

  int maxSize;
    descriptor: I
    flags: (0x0000) 

  java.lang.Object[] elements;
    descriptor: [Ljava/lang/Object;
    flags: (0x0000) 

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 20
            bipush 10
            putstatic org.eclipse.jdt.internal.compiler.util.ObjectVector.INITIAL_SIZE:I
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.jdt.internal.compiler.util.ObjectVector this
         0: .line 27
            aload 0 /* this */
            getstatic org.eclipse.jdt.internal.compiler.util.ObjectVector.INITIAL_SIZE:I
            invokespecial org.eclipse.jdt.internal.compiler.util.ObjectVector.<init>:(I)V
         1: .line 28
            return
        end local 0 // org.eclipse.jdt.internal.compiler.util.ObjectVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jdt/internal/compiler/util/ObjectVector;

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jdt.internal.compiler.util.ObjectVector this
        start local 1 // int initialSize
         0: .line 30
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 31
            aload 0 /* this */
            iload 1 /* initialSize */
            ifle 2
            iload 1 /* initialSize */
            goto 3
      StackMap locals: org.eclipse.jdt.internal.compiler.util.ObjectVector int
      StackMap stack: org.eclipse.jdt.internal.compiler.util.ObjectVector
         2: getstatic org.eclipse.jdt.internal.compiler.util.ObjectVector.INITIAL_SIZE:I
      StackMap locals: org.eclipse.jdt.internal.compiler.util.ObjectVector int
      StackMap stack: org.eclipse.jdt.internal.compiler.util.ObjectVector int
         3: putfield org.eclipse.jdt.internal.compiler.util.ObjectVector.maxSize:I
         4: .line 32
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.jdt.internal.compiler.util.ObjectVector.size:I
         5: .line 33
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.ObjectVector.maxSize:I
            anewarray java.lang.Object
            putfield org.eclipse.jdt.internal.compiler.util.ObjectVector.elements:[Ljava/lang/Object;
         6: .line 34
            return
        end local 1 // int initialSize
        end local 0 // org.eclipse.jdt.internal.compiler.util.ObjectVector this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    7     0         this  Lorg/eclipse/jdt/internal/compiler/util/ObjectVector;
            0    7     1  initialSize  I
    MethodParameters:
             Name  Flags
      initialSize  

  public void add(java.lang.Object);
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // org.eclipse.jdt.internal.compiler.util.ObjectVector this
        start local 1 // java.lang.Object newElement
         0: .line 38
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.ObjectVector.size:I
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.ObjectVector.maxSize:I
            if_icmpne 2
         1: .line 39
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.ObjectVector.elements:[Ljava/lang/Object;
            iconst_0
            aload 0 /* this */
            aload 0 /* this */
            dup
            getfield org.eclipse.jdt.internal.compiler.util.ObjectVector.maxSize:I
            iconst_2
            imul
            dup_x1
            putfield org.eclipse.jdt.internal.compiler.util.ObjectVector.maxSize:I
            anewarray java.lang.Object
            dup_x1
            putfield org.eclipse.jdt.internal.compiler.util.ObjectVector.elements:[Ljava/lang/Object;
            iconst_0
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.ObjectVector.size:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         2: .line 40
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.ObjectVector.elements:[Ljava/lang/Object;
            aload 0 /* this */
            dup
            getfield org.eclipse.jdt.internal.compiler.util.ObjectVector.size:I
            dup_x1
            iconst_1
            iadd
            putfield org.eclipse.jdt.internal.compiler.util.ObjectVector.size:I
            aload 1 /* newElement */
            aastore
         3: .line 41
            return
        end local 1 // java.lang.Object newElement
        end local 0 // org.eclipse.jdt.internal.compiler.util.ObjectVector this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0        this  Lorg/eclipse/jdt/internal/compiler/util/ObjectVector;
            0    4     1  newElement  Ljava/lang/Object;
    MethodParameters:
            Name  Flags
      newElement  

  public void addAll(java.lang.Object[]);
    descriptor: ([Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.eclipse.jdt.internal.compiler.util.ObjectVector this
        start local 1 // java.lang.Object[] newElements
         0: .line 45
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.ObjectVector.size:I
            aload 1 /* newElements */
            arraylength
            iadd
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.ObjectVector.maxSize:I
            if_icmplt 3
         1: .line 46
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.ObjectVector.size:I
            aload 1 /* newElements */
            arraylength
            iadd
            putfield org.eclipse.jdt.internal.compiler.util.ObjectVector.maxSize:I
         2: .line 47
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.ObjectVector.elements:[Ljava/lang/Object;
            iconst_0
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.ObjectVector.maxSize:I
            anewarray java.lang.Object
            dup_x1
            putfield org.eclipse.jdt.internal.compiler.util.ObjectVector.elements:[Ljava/lang/Object;
            iconst_0
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.ObjectVector.size:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         3: .line 49
      StackMap locals:
      StackMap stack:
            aload 1 /* newElements */
            iconst_0
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.ObjectVector.elements:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.ObjectVector.size:I
            aload 1 /* newElements */
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         4: .line 50
            aload 0 /* this */
            dup
            getfield org.eclipse.jdt.internal.compiler.util.ObjectVector.size:I
            aload 1 /* newElements */
            arraylength
            iadd
            putfield org.eclipse.jdt.internal.compiler.util.ObjectVector.size:I
         5: .line 51
            return
        end local 1 // java.lang.Object[] newElements
        end local 0 // org.eclipse.jdt.internal.compiler.util.ObjectVector this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    6     0         this  Lorg/eclipse/jdt/internal/compiler/util/ObjectVector;
            0    6     1  newElements  [Ljava/lang/Object;
    MethodParameters:
             Name  Flags
      newElements  

  public void addAll(org.eclipse.jdt.internal.compiler.util.ObjectVector);
    descriptor: (Lorg/eclipse/jdt/internal/compiler/util/ObjectVector;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.eclipse.jdt.internal.compiler.util.ObjectVector this
        start local 1 // org.eclipse.jdt.internal.compiler.util.ObjectVector newVector
         0: .line 55
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.ObjectVector.size:I
            aload 1 /* newVector */
            getfield org.eclipse.jdt.internal.compiler.util.ObjectVector.size:I
            iadd
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.ObjectVector.maxSize:I
            if_icmplt 3
         1: .line 56
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.ObjectVector.size:I
            aload 1 /* newVector */
            getfield org.eclipse.jdt.internal.compiler.util.ObjectVector.size:I
            iadd
            putfield org.eclipse.jdt.internal.compiler.util.ObjectVector.maxSize:I
         2: .line 57
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.ObjectVector.elements:[Ljava/lang/Object;
            iconst_0
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.ObjectVector.maxSize:I
            anewarray java.lang.Object
            dup_x1
            putfield org.eclipse.jdt.internal.compiler.util.ObjectVector.elements:[Ljava/lang/Object;
            iconst_0
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.ObjectVector.size:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         3: .line 59
      StackMap locals:
      StackMap stack:
            aload 1 /* newVector */
            getfield org.eclipse.jdt.internal.compiler.util.ObjectVector.elements:[Ljava/lang/Object;
            iconst_0
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.ObjectVector.elements:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.ObjectVector.size:I
            aload 1 /* newVector */
            getfield org.eclipse.jdt.internal.compiler.util.ObjectVector.size:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         4: .line 60
            aload 0 /* this */
            dup
            getfield org.eclipse.jdt.internal.compiler.util.ObjectVector.size:I
            aload 1 /* newVector */
            getfield org.eclipse.jdt.internal.compiler.util.ObjectVector.size:I
            iadd
            putfield org.eclipse.jdt.internal.compiler.util.ObjectVector.size:I
         5: .line 61
            return
        end local 1 // org.eclipse.jdt.internal.compiler.util.ObjectVector newVector
        end local 0 // org.eclipse.jdt.internal.compiler.util.ObjectVector this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    6     0       this  Lorg/eclipse/jdt/internal/compiler/util/ObjectVector;
            0    6     1  newVector  Lorg/eclipse/jdt/internal/compiler/util/ObjectVector;
    MethodParameters:
           Name  Flags
      newVector  

  public boolean containsIdentical(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.jdt.internal.compiler.util.ObjectVector this
        start local 1 // java.lang.Object element
         0: .line 68
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.ObjectVector.size:I
            istore 2 /* i */
        start local 2 // int i
         1: goto 4
         2: .line 69
      StackMap locals: int
      StackMap stack:
            aload 1 /* element */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.ObjectVector.elements:[Ljava/lang/Object;
            iload 2 /* i */
            aaload
            if_acmpne 4
         3: .line 70
            iconst_1
            ireturn
         4: .line 68
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ -1
            iload 2 /* i */
            ifge 2
        end local 2 // int i
         5: .line 71
            iconst_0
            ireturn
        end local 1 // java.lang.Object element
        end local 0 // org.eclipse.jdt.internal.compiler.util.ObjectVector this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Lorg/eclipse/jdt/internal/compiler/util/ObjectVector;
            0    6     1  element  Ljava/lang/Object;
            1    5     2        i  I
    MethodParameters:
         Name  Flags
      element  

  public boolean contains(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.jdt.internal.compiler.util.ObjectVector this
        start local 1 // java.lang.Object element
         0: .line 79
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.ObjectVector.size:I
            istore 2 /* i */
        start local 2 // int i
         1: goto 4
         2: .line 80
      StackMap locals: int
      StackMap stack:
            aload 1 /* element */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.ObjectVector.elements:[Ljava/lang/Object;
            iload 2 /* i */
            aaload
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 4
         3: .line 81
            iconst_1
            ireturn
         4: .line 79
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ -1
            iload 2 /* i */
            ifge 2
        end local 2 // int i
         5: .line 82
            iconst_0
            ireturn
        end local 1 // java.lang.Object element
        end local 0 // org.eclipse.jdt.internal.compiler.util.ObjectVector this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Lorg/eclipse/jdt/internal/compiler/util/ObjectVector;
            0    6     1  element  Ljava/lang/Object;
            1    5     2        i  I
    MethodParameters:
         Name  Flags
      element  

  public void copyInto(java.lang.Object[]);
    descriptor: ([Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.jdt.internal.compiler.util.ObjectVector this
        start local 1 // java.lang.Object[] targetArray
         0: .line 87
            aload 0 /* this */
            aload 1 /* targetArray */
            iconst_0
            invokevirtual org.eclipse.jdt.internal.compiler.util.ObjectVector.copyInto:([Ljava/lang/Object;I)V
         1: .line 88
            return
        end local 1 // java.lang.Object[] targetArray
        end local 0 // org.eclipse.jdt.internal.compiler.util.ObjectVector this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lorg/eclipse/jdt/internal/compiler/util/ObjectVector;
            0    2     1  targetArray  [Ljava/lang/Object;
    MethodParameters:
             Name  Flags
      targetArray  

  public void copyInto(java.lang.Object[], int);
    descriptor: ([Ljava/lang/Object;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.eclipse.jdt.internal.compiler.util.ObjectVector this
        start local 1 // java.lang.Object[] targetArray
        start local 2 // int index
         0: .line 92
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.ObjectVector.elements:[Ljava/lang/Object;
            iconst_0
            aload 1 /* targetArray */
            iload 2 /* index */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.ObjectVector.size:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         1: .line 93
            return
        end local 2 // int index
        end local 1 // java.lang.Object[] targetArray
        end local 0 // org.eclipse.jdt.internal.compiler.util.ObjectVector this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lorg/eclipse/jdt/internal/compiler/util/ObjectVector;
            0    2     1  targetArray  [Ljava/lang/Object;
            0    2     2        index  I
    MethodParameters:
             Name  Flags
      targetArray  
      index        

  public java.lang.Object elementAt(int);
    descriptor: (I)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jdt.internal.compiler.util.ObjectVector this
        start local 1 // int index
         0: .line 97
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.ObjectVector.elements:[Ljava/lang/Object;
            iload 1 /* index */
            aaload
            areturn
        end local 1 // int index
        end local 0 // org.eclipse.jdt.internal.compiler.util.ObjectVector this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/jdt/internal/compiler/util/ObjectVector;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public java.lang.Object find(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.jdt.internal.compiler.util.ObjectVector this
        start local 1 // java.lang.Object element
         0: .line 102
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.ObjectVector.size:I
            istore 2 /* i */
        start local 2 // int i
         1: goto 4
         2: .line 103
      StackMap locals: int
      StackMap stack:
            aload 1 /* element */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.ObjectVector.elements:[Ljava/lang/Object;
            iload 2 /* i */
            aaload
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 4
         3: .line 104
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.ObjectVector.elements:[Ljava/lang/Object;
            iload 2 /* i */
            aaload
            areturn
         4: .line 102
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ -1
            iload 2 /* i */
            ifge 2
        end local 2 // int i
         5: .line 105
            aconst_null
            areturn
        end local 1 // java.lang.Object element
        end local 0 // org.eclipse.jdt.internal.compiler.util.ObjectVector this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Lorg/eclipse/jdt/internal/compiler/util/ObjectVector;
            0    6     1  element  Ljava/lang/Object;
            1    5     2        i  I
    MethodParameters:
         Name  Flags
      element  

  public java.lang.Object remove(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=3, args_size=2
        start local 0 // org.eclipse.jdt.internal.compiler.util.ObjectVector this
        start local 1 // java.lang.Object element
         0: .line 111
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.ObjectVector.size:I
            istore 2 /* i */
        start local 2 // int i
         1: goto 6
         2: .line 112
      StackMap locals: int
      StackMap stack:
            aload 1 /* element */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.ObjectVector.elements:[Ljava/lang/Object;
            iload 2 /* i */
            aaload
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 6
         3: .line 114
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.ObjectVector.elements:[Ljava/lang/Object;
            iload 2 /* i */
            iconst_1
            iadd
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.ObjectVector.elements:[Ljava/lang/Object;
            iload 2 /* i */
            aload 0 /* this */
            dup
            getfield org.eclipse.jdt.internal.compiler.util.ObjectVector.size:I
            iconst_1
            isub
            dup_x1
            putfield org.eclipse.jdt.internal.compiler.util.ObjectVector.size:I
            iload 2 /* i */
            isub
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         4: .line 115
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.ObjectVector.elements:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.ObjectVector.size:I
            aconst_null
            aastore
         5: .line 116
            aload 1 /* element */
            areturn
         6: .line 111
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ -1
            iload 2 /* i */
            ifge 2
        end local 2 // int i
         7: .line 118
            aconst_null
            areturn
        end local 1 // java.lang.Object element
        end local 0 // org.eclipse.jdt.internal.compiler.util.ObjectVector this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    8     0     this  Lorg/eclipse/jdt/internal/compiler/util/ObjectVector;
            0    8     1  element  Ljava/lang/Object;
            1    7     2        i  I
    MethodParameters:
         Name  Flags
      element  

  public void removeAll();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.eclipse.jdt.internal.compiler.util.ObjectVector this
         0: .line 123
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.ObjectVector.size:I
            istore 1 /* i */
        start local 1 // int i
         1: goto 3
         2: .line 124
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.ObjectVector.elements:[Ljava/lang/Object;
            iload 1 /* i */
            aconst_null
            aastore
         3: .line 123
      StackMap locals:
      StackMap stack:
            iinc 1 /* i */ -1
            iload 1 /* i */
            ifge 2
        end local 1 // int i
         4: .line 125
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.jdt.internal.compiler.util.ObjectVector.size:I
         5: .line 126
            return
        end local 0 // org.eclipse.jdt.internal.compiler.util.ObjectVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/eclipse/jdt/internal/compiler/util/ObjectVector;
            1    4     1     i  I

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jdt.internal.compiler.util.ObjectVector this
         0: .line 130
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.ObjectVector.size:I
            ireturn
        end local 0 // org.eclipse.jdt.internal.compiler.util.ObjectVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jdt/internal/compiler/util/ObjectVector;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // org.eclipse.jdt.internal.compiler.util.ObjectVector this
         0: .line 136
            ldc ""
            astore 1 /* s */
        start local 1 // java.lang.String s
         1: .line 137
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         2: goto 5
         3: .line 138
      StackMap locals: java.lang.String int
      StackMap stack:
            new java.lang.StringBuilder
            dup
            aload 1 /* s */
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.ObjectVector.elements:[Ljava/lang/Object;
            iload 2 /* i */
            aaload
            invokevirtual java.lang.Object.toString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "\n"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            astore 1 /* s */
         4: .line 137
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 2 /* i */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.ObjectVector.size:I
            if_icmplt 3
        end local 2 // int i
         6: .line 139
            aload 1 /* s */
            areturn
        end local 1 // java.lang.String s
        end local 0 // org.eclipse.jdt.internal.compiler.util.ObjectVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/eclipse/jdt/internal/compiler/util/ObjectVector;
            1    7     1     s  Ljava/lang/String;
            2    6     2     i  I

  public java.util.Iterator<java.lang.Object> iterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.jdt.internal.compiler.util.ObjectVector this
         0: .line 144
            new org.eclipse.jdt.internal.compiler.util.ObjectVector$1
            dup
            aload 0 /* this */
            invokespecial org.eclipse.jdt.internal.compiler.util.ObjectVector$1.<init>:(Lorg/eclipse/jdt/internal/compiler/util/ObjectVector;)V
            areturn
        end local 0 // org.eclipse.jdt.internal.compiler.util.ObjectVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jdt/internal/compiler/util/ObjectVector;
    Signature: ()Ljava/util/Iterator<Ljava/lang/Object;>;
}
Signature: Ljava/lang/Object;Ljava/lang/Iterable<Ljava/lang/Object;>;
SourceFile: "ObjectVector.java"
NestMembers:
  org.eclipse.jdt.internal.compiler.util.ObjectVector$1
InnerClasses:
  org.eclipse.jdt.internal.compiler.util.ObjectVector$1