home *** CD-ROM | disk | FTP | other *** search
/ S283 Planetary Science &n…he Search for Life DVD 2 / DVD-ROM.iso / install / jre1_3 / lib / rt.jar / java / util / Collections$2.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  1.3 KB  |  55 lines

  1. package java.util;
  2.  
  3. import java.util.Collections.UnmodifiableList;
  4.  
  5. class Collections$2 implements ListIterator {
  6.    // $FF: renamed from: i java.util.ListIterator
  7.    ListIterator field_0;
  8.    // $FF: synthetic field
  9.    private final int val$index;
  10.    // $FF: synthetic field
  11.    private final Collections.UnmodifiableList this$0;
  12.  
  13.    Collections$2(Collections.UnmodifiableList var1, int var2) {
  14.       this.this$0 = var1;
  15.       this.val$index = var2;
  16.       this.field_0 = UnmodifiableList.access$000(this.this$0).listIterator(this.val$index);
  17.    }
  18.  
  19.    public boolean hasNext() {
  20.       return this.field_0.hasNext();
  21.    }
  22.  
  23.    public Object next() {
  24.       return this.field_0.next();
  25.    }
  26.  
  27.    public boolean hasPrevious() {
  28.       return this.field_0.hasPrevious();
  29.    }
  30.  
  31.    public Object previous() {
  32.       return this.field_0.previous();
  33.    }
  34.  
  35.    public int nextIndex() {
  36.       return this.field_0.nextIndex();
  37.    }
  38.  
  39.    public int previousIndex() {
  40.       return this.field_0.previousIndex();
  41.    }
  42.  
  43.    public void remove() {
  44.       throw new UnsupportedOperationException();
  45.    }
  46.  
  47.    public void set(Object var1) {
  48.       throw new UnsupportedOperationException();
  49.    }
  50.  
  51.    public void add(Object var1) {
  52.       throw new UnsupportedOperationException();
  53.    }
  54. }
  55.