Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'JCL/converterJclMin/src/java/util/ArrayList.java')
-rw-r--r--JCL/converterJclMin/src/java/util/ArrayList.java48
1 files changed, 48 insertions, 0 deletions
diff --git a/JCL/converterJclMin/src/java/util/ArrayList.java b/JCL/converterJclMin/src/java/util/ArrayList.java
new file mode 100644
index 0000000000..7e5e8b271f
--- /dev/null
+++ b/JCL/converterJclMin/src/java/util/ArrayList.java
@@ -0,0 +1,48 @@
+/*******************************************************************************
+ * 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) {
+ }
+}

Back to the top