blob: 7e5e8b271fb0b970667a219d56779129ce75a3a4 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package java.util;
public class ArrayList implements List {
public ArrayList(int i) {
}
public ArrayList() {
}
public Object[] toArray(Object[] o) {
return null;
}
public int size() {
return 0;
}
public boolean add(Object o) {
return false;
}
public int indexOf(Object o) {
return 0;
}
public Object remove(int index) {
return null;
}
public Object get(int index) {
return null;
}
public boolean contains(Object o) {
return false;
}
public Iterator iterator() {
return null;
}
public boolean addAll(Collection c) {
return false;
}
public void set(int i, Object o) {
}
}