antlr.collections.impl
Class Vector

java.lang.Object
  |
  +--antlr.collections.impl.Vector
All Implemented Interfaces:
Cloneable

public class Vector
extends Object
implements Cloneable

Untamed:


Field Summary
protected  Object[] data
           
protected  int lastElement
           
 
Constructor Summary
Vector()
          Enabled:
Vector(int size)
          Enabled:
 
Method Summary
 void appendElement(Object o)
          Enabled:
 int capacity()
          Enabled: Returns the current capacity of the vector.
 Object clone()
          Suppressed:
 Object elementAt(int i)
          Enabled: Returns the element at the specified index.
 Enumeration elements()
          Enabled:
 void ensureCapacity(int minIndex)
          Enabled:
 boolean removeElement(Object o)
          Enabled:
 void setElementAt(Object obj, int i)
          Enabled:
 int size()
          Enabled:
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

data

protected Object[] data

lastElement

protected int lastElement
Constructor Detail

Vector

public Vector()
Enabled:


Vector

public Vector(int size)
Enabled:

Method Detail

appendElement

public void appendElement(Object o)
Enabled:


capacity

public int capacity()
Enabled: Returns the current capacity of the vector.


clone

public Object clone()
Suppressed:

Overrides:
clone in class Object
Returns:
a clone of this instance.
See Also:
java.lang.Cloneable

elementAt

public Object elementAt(int i)
Enabled: Returns the element at the specified index.


elements

public Enumeration elements()
Enabled:


ensureCapacity

public void ensureCapacity(int minIndex)
Enabled:


removeElement

public boolean removeElement(Object o)
Enabled:


setElementAt

public void setElementAt(Object obj,
                         int i)
Enabled:


size

public int size()
Enabled:



comments?