Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJay Arthanareeswaran2020-09-16 03:59:22 +0000
committerJay Arthanareeswaran2020-09-16 03:59:22 +0000
commit27b53ca171a19db4794ec310f4e339e876ea495f (patch)
tree3b12fd95b0afb9a5401d836d115751d13588c5c0 /JCL/converterJclMin/src/java/util/List.java
parenta8b03f929def2f6a9f479a198856e34e6cd4af34 (diff)
parent0a27063a3e6012ba850fd756f98be50be0375dc3 (diff)
downloadeclipse.jdt.core-27b53ca171a19db4794ec310f4e339e876ea495f.tar.gz
eclipse.jdt.core-27b53ca171a19db4794ec310f4e339e876ea495f.tar.xz
eclipse.jdt.core-27b53ca171a19db4794ec310f4e339e876ea495f.zip
Merge remote-tracking branch 'origin/BETA_JAVA15'
Diffstat (limited to 'JCL/converterJclMin/src/java/util/List.java')
-rw-r--r--JCL/converterJclMin/src/java/util/List.java16
1 files changed, 16 insertions, 0 deletions
diff --git a/JCL/converterJclMin/src/java/util/List.java b/JCL/converterJclMin/src/java/util/List.java
new file mode 100644
index 0000000000..467cb7badb
--- /dev/null
+++ b/JCL/converterJclMin/src/java/util/List.java
@@ -0,0 +1,16 @@
+/*******************************************************************************
+ * 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 interface List extends Collection {
+ public boolean add(Object o);
+ public void set(int i, Object o);
+}

Back to the top