File: List.java

package info (click to toggle)
bouncycastle 1.44%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 25,148 kB
  • ctags: 29,306
  • sloc: java: 277,890; xml: 1,881; sh: 974; makefile: 68
file content (15 lines) | stat: -rw-r--r-- 936 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;
  }