aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/core/src/main/jdk1.1/java/util/List.java
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/spongycastle/core/src/main/jdk1.1/java/util/List.java')
-rw-r--r--libraries/spongycastle/core/src/main/jdk1.1/java/util/List.java15
1 files changed, 15 insertions, 0 deletions
diff --git a/libraries/spongycastle/core/src/main/jdk1.1/java/util/List.java b/libraries/spongycastle/core/src/main/jdk1.1/java/util/List.java
new file mode 100644
index 000000000..ee5896ea8
--- /dev/null
+++ b/libraries/spongycastle/core/src/main/jdk1.1/java/util/List.java
@@ -0,0 +1,15 @@
+package java.util;
+
+public interface List extends Collection
+ {
+ void add(int index, Object element)throws UnsupportedOperationException,ClassCastException,IllegalArgumentException,IndexOutOfBoundsException;
+ boolean addAll(int index, Collection c) throws UnsupportedOperationException,ClassCastException,IllegalArgumentException,IndexOutOfBoundsException;
+ Object get(int index) throws IndexOutOfBoundsException;
+ int indexOf(Object o);
+ int lastIndexOf(Object o);
+ ListIterator listIterator();
+ ListIterator listIterator(int index)throws IndexOutOfBoundsException;
+ Object remove(int index)throws UnsupportedOperationException,IndexOutOfBoundsException;
+ Object set(int index, Object element) throws UnsupportedOperationException,ClassCastException,IllegalArgumentException,IndexOutOfBoundsException;
+ List subList(int fromIndex, int toIndex) throws IndexOutOfBoundsException;
+ }