com.google.gwt.emul.java.util.Vector Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vaadin-client Show documentation
Show all versions of vaadin-client Show documentation
Vaadin is a web application framework for Rich Internet Applications (RIA).
Vaadin enables easy development and maintenance of fast and
secure rich web
applications with a stunning look and feel and a wide browser support.
It features a server-side architecture with the majority of the logic
running
on the server. Ajax technology is used at the browser-side to ensure a
rich
and interactive user experience.
/*
* Copyright 2008 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package java.util;
import java.io.Serializable;
/**
* To keep performance characteristics in line with Java community expectations,
* Vector
is a wrapper around ArrayList
. [Sun
* docs]
*
* @param element type.
*/
public class Vector extends AbstractList implements List,
RandomAccess, Cloneable, Serializable {
private transient ArrayList arrayList;
/**
* Ensures that RPC will consider type parameter E to be exposed. It will be
* pruned by dead code elimination.
*/
@SuppressWarnings("unused")
private E exposeElement;
public Vector() {
arrayList = new ArrayList();
}
public Vector(Collection extends E> c) {
arrayList = new ArrayList();
addAll(c);
}
public Vector(int initialCapacity) {
arrayList = new ArrayList(initialCapacity);
}
/**
* Capacity increment is ignored.
*/
@SuppressWarnings("unused")
public Vector(int initialCapacity, int ignoredCapacityIncrement) {
this(initialCapacity);
}
@Override
public boolean add(E o) {
return arrayList.add(o);
}
@Override
public void add(int index, E o) {
arrayList.add(index, o);
}
@Override
public boolean addAll(Collection extends E> c) {
return arrayList.addAll(c);
}
@Override
public boolean addAll(int index, Collection extends E> c) {
return arrayList.addAll(index, c);
}
public void addElement(E o) {
add(o);
}
public int capacity() {
return arrayList.capacity();
}
@Override
public void clear() {
arrayList.clear();
}
public Object clone() {
return new Vector(this);
}
@Override
public boolean contains(Object elem) {
return arrayList.contains(elem);
}
@Override
public boolean containsAll(Collection> c) {
return arrayList.containsAll(c);
}
public void copyInto(Object[] objs) {
int i = -1;
int n = size();
while (++i < n) {
objs[i] = get(i);
}
}
public E elementAt(int index) {
return get(index);
}
public Enumeration elements() {
return Collections.enumeration(arrayList);
}
public void ensureCapacity(int capacity) {
arrayList.ensureCapacity(capacity);
}
public E firstElement() {
return get(0);
}
@Override
public E get(int index) {
return arrayList.get(index);
}
@Override
public int indexOf(Object elem) {
return arrayList.indexOf(elem);
}
public int indexOf(Object elem, int index) {
if (index < 0) {
indexOutOfBounds(index, size());
}
return arrayList.indexOf(elem, index);
}
public void insertElementAt(E o, int index) {
add(index, o);
}
@Override
public boolean isEmpty() {
return (arrayList.size() == 0);
}
@Override
public Iterator iterator() {
return arrayList.iterator();
}
public E lastElement() {
if (isEmpty()) {
throw new IndexOutOfBoundsException("last");
} else {
return get(size() - 1);
}
}
@Override
public int lastIndexOf(Object o) {
return arrayList.lastIndexOf(o);
}
public int lastIndexOf(Object o, int index) {
if (index >= size()) {
indexOutOfBounds(index, size());
}
return arrayList.lastIndexOf(o, index);
}
@Override
public E remove(int index) {
return arrayList.remove(index);
}
@Override
public boolean removeAll(Collection> c) {
return arrayList.removeAll(c);
}
public void removeAllElements() {
clear();
}
public boolean removeElement(Object o) {
return remove(o);
}
public void removeElementAt(int index) {
remove(index);
}
@Override
public E set(int index, E elem) {
return arrayList.set(index, elem);
}
public void setElementAt(E o, int index) {
set(index, o);
}
public void setSize(int size) {
if (size < 0) {
throw new ArrayIndexOutOfBoundsException();
}
arrayList.setSize(size);
}
@Override
public int size() {
return arrayList.size();
}
@Override
public List subList(int fromIndex, int toIndex) {
return arrayList.subList(fromIndex, toIndex);
}
@Override
public Object[] toArray() {
return arrayList.toArray();
}
@Override
public T[] toArray(T[] a) {
return arrayList.toArray(a);
}
@Override
public String toString() {
return arrayList.toString();
}
/**
* Currently ignored.
*/
public void trimToSize() {
arrayList.trimToSize();
}
@Override
protected void removeRange(int fromIndex, int endIndex) {
arrayList.removeRange(fromIndex, endIndex);
}
}