Searched defs:Vector (Results 1 - 3 of 3) sorted by relevance

/openjdk7/langtools/test/tools/javac/generics/6372782/
H A DVector.java24 public interface Vector<E extends Vector<E, P, V, S, T, U>, interface in inherits:Value
/openjdk7/jdk/src/windows/bin/
H A Dcmdtoargs.c208 class Vector {
216 Vector(){} function
219 Vector(char* pname, char* cline) { function
290 void dotest(Vector** vectors) {
291 Vector* v = vectors[0];
316 Vector *vectors[MAXV];
320 Vector* v = new Vector(argv[0], "abcd");
326 v = new Vector(argv[0], "\"a b c d\"");
332 v = new Vector(arg
[all...]
/openjdk7/jdk/src/share/classes/java/util/
H A DVector.java29 * The {@code Vector} class implements a growable array of
32 * {@code Vector} can grow or shrink as needed to accommodate
33 * adding and removing items after the {@code Vector} has been created.
69 * implementations, {@code Vector} is synchronized. If a thread-safe
71 * ArrayList} in place of {@code Vector}.
79 public class Vector<E> class in inherits:AbstractList,List,RandomAccess,Cloneable,java.io.Serializable
88 * <p>Any array elements following the last element in the Vector are null.
95 * The number of valid components in this {@code Vector} object.
126 public Vector(int initialCapacity, int capacityIncrement) { method in class:Vector
143 public Vector(in method in class:Vector
152 public Vector() { method in class:Vector
166 public Vector(Collection<? extends E> c) { method in class:Vector
[all...]

Completed in 66 milliseconds