home *** CD-ROM | disk | FTP | other *** search
- package java.util;
-
- import java.io.Serializable;
-
- class Collections$EmptyList extends AbstractList implements Serializable {
- private static final long serialVersionUID = 8842843931221139166L;
-
- private Collections$EmptyList() {
- }
-
- public int size() {
- return 0;
- }
-
- public boolean contains(Object var1) {
- return false;
- }
-
- public Object get(int var1) {
- throw new IndexOutOfBoundsException("Index: " + var1);
- }
-
- // $FF: synthetic method
- Collections$EmptyList(Collections.1 var1) {
- this();
- }
- }
-