jeroen.util
Class Vector2

java.lang.Object
  |
  +--java.util.AbstractCollection
        |
        +--java.util.AbstractList
              |
              +--java.util.Vector
                    |
                    +--jeroen.util.Vector2
All Implemented Interfaces:
Cloneable, Collection, List, Serializable

public class Vector2
extends Vector

Vector die voor addAll de implementatie gebruikt van AbstractCollection. Dit is vanwege een aanroep naar Collection.size, die ongeldig is voor Parser.size()

See Also:
AbstractCollection.addAll(java.util.Collection), Vector.addAll(java.util.Collection), Parser.size(), Serialized Form

Fields inherited from class java.util.Vector
capacityIncrement, elementCount, elementData
 
Fields inherited from class java.util.AbstractList
modCount
 
Constructor Summary
Vector2()
           
 
Method Summary
 boolean addAll(Collection c)
          Implementatie die alleen maar de iterator gebruikt.
 
Methods inherited from class java.util.Vector
add, add, addAll, addElement, capacity, clear, clone, contains, containsAll, copyInto, elementAt, elements, ensureCapacity, equals, firstElement, get, hashCode, indexOf, indexOf, insertElementAt, isEmpty, lastElement, lastIndexOf, lastIndexOf, remove, remove, removeAll, removeAllElements, removeElement, removeElementAt, removeRange, retainAll, set, setElementAt, setSize, size, subList, toArray, toArray, toString, trimToSize
 
Methods inherited from class java.util.AbstractList
iterator, listIterator, listIterator
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface java.util.List
iterator, listIterator, listIterator
 

Constructor Detail

Vector2

public Vector2()
Method Detail

addAll

public boolean addAll(Collection c)
Implementatie die alleen maar de iterator gebruikt.
Overrides:
addAll in class Vector