js.tinyvm.util
Class HashVector<T>

java.lang.Object
  extended by js.tinyvm.util.HashVector<T>

public class HashVector<T>
extends java.lang.Object


Constructor Summary
HashVector()
           
 
Method Summary
 void addElement(T aElement)
           
 boolean containsKey(java.lang.Object aKey)
           
 T elementAt(int aIndex)
           
 java.util.Iterator<T> elements()
           
 int indexOf(java.lang.Object aKey)
           
 void insertElementAt(T aElement, int aIndex)
          Deprecated. method is to be removed since it messes up indices
 void put(T aKey, java.lang.Object aElement)
          Deprecated. method is to be removed since it doesn't seem to fit into the concept since there is no get method
 int size()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

HashVector

public HashVector()
Method Detail

insertElementAt

public void insertElementAt(T aElement,
                            int aIndex)
Deprecated. method is to be removed since it messes up indices


addElement

public void addElement(T aElement)

put

public void put(T aKey,
                java.lang.Object aElement)
Deprecated. method is to be removed since it doesn't seem to fit into the concept since there is no get method


containsKey

public boolean containsKey(java.lang.Object aKey)

indexOf

public int indexOf(java.lang.Object aKey)

elements

public java.util.Iterator<T> elements()

size

public int size()

elementAt

public T elementAt(int aIndex)