aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/core/src/main/j2me/java/util/List.java
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/spongycastle/core/src/main/j2me/java/util/List.java')
-rw-r--r--libraries/spongycastle/core/src/main/j2me/java/util/List.java32
1 files changed, 0 insertions, 32 deletions
diff --git a/libraries/spongycastle/core/src/main/j2me/java/util/List.java b/libraries/spongycastle/core/src/main/j2me/java/util/List.java
deleted file mode 100644
index d9df616fd..000000000
--- a/libraries/spongycastle/core/src/main/j2me/java/util/List.java
+++ /dev/null
@@ -1,32 +0,0 @@
-package java.util;
-
-public interface List
- extends Collection
-{
- void add(int index, Object element)
- throws RuntimeException, ClassCastException, IllegalArgumentException, IndexOutOfBoundsException;
-
- boolean addAll(int index, Collection c)
- throws RuntimeException, 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 RuntimeException, IndexOutOfBoundsException;
-
- Object set(int index, Object element)
- throws RuntimeException, ClassCastException, IllegalArgumentException, IndexOutOfBoundsException;
-
- List subList(int fromIndex, int toIndex)
- throws IndexOutOfBoundsException;
-}