001: package java.util;
002:
003: import java.io.Serializable;
004: import java.lang.reflect.Array;
005:
006: public class Vector extends AbstractList implements List, RandomAccess,
007: Cloneable, Serializable {
008: protected Object[] elementData;
009: protected int elementCount;
010: protected int capacityIncrement;
011:
012: public Vector() {
013: }
014:
015: public Vector(Collection c) {
016: }
017:
018: public Vector(int initialCapacity, int capacityIncrement) {
019: }
020:
021: public Vector(int initialCapacity) {
022: }
023:
024: public synchronized void copyInto(Object[] a) {
025: }
026:
027: public synchronized void trimToSize() {
028: }
029:
030: public synchronized void ensureCapacity(int minCapacity) {
031: }
032:
033: public synchronized void setSize(int newSize) {
034: }
035:
036: public synchronized int capacity() {
037: }
038:
039: public synchronized int size() {
040: }
041:
042: public synchronized boolean isEmpty() {
043: }
044:
045: public Enumeration elements() {
046: }
047:
048: public boolean contains(Object elem) {
049: }
050:
051: public int indexOf(Object elem) {
052: }
053:
054: public synchronized int indexOf(Object e, int index) {
055: }
056:
057: public int lastIndexOf(Object elem) {
058: }
059:
060: public synchronized int lastIndexOf(Object e, int index) {
061: }
062:
063: public synchronized Object elementAt(int index) {
064: }
065:
066: public synchronized Object firstElement() {
067: }
068:
069: public synchronized Object lastElement() {
070: }
071:
072: public void setElementAt(Object obj, int index) {
073: }
074:
075: public void removeElementAt(int index) {
076: }
077:
078: public synchronized void insertElementAt(Object obj, int index) {
079: }
080:
081: public synchronized void addElement(Object obj) {
082: }
083:
084: public synchronized boolean removeElement(Object obj) {
085: }
086:
087: public synchronized void removeAllElements() {
088: }
089:
090: public synchronized Object clone() {
091: }
092:
093: public synchronized Object[] toArray() {
094: }
095:
096: public synchronized Object[] toArray(Object[] a) {
097: }
098:
099: public Object get(int index) {
100: }
101:
102: public synchronized Object set(int index, Object element) {
103: }
104:
105: public boolean add(Object o) {
106: }
107:
108: public boolean remove(Object o) {
109: }
110:
111: public void add(int index, Object element) {
112: }
113:
114: public synchronized Object remove(int index) {
115: }
116:
117: public void clear() {
118: }
119:
120: public synchronized boolean containsAll(Collection c) {
121: }
122:
123: public synchronized boolean addAll(Collection c) {
124: }
125:
126: public synchronized boolean removeAll(Collection c) {
127: }
128:
129: public synchronized boolean retainAll(Collection c) {
130: }
131:
132: public synchronized boolean addAll(int index, Collection c) {
133: }
134:
135: public synchronized boolean equals(Object o) {
136: }
137:
138: public synchronized int hashCode() {
139: }
140:
141: public synchronized String toString() {
142: }
143:
144: public synchronized List subList(int fromIndex, int toIndex) {
145: }
146:
147: protected void removeRange(int fromIndex, int toIndex) {
148: }
149:
150: private void checkBoundInclusive(int index) {
151: }
152:
153: private void checkBoundExclusive(int index) {
154: }
155: }
|