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$1.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  864 b   |  26 lines

  1. package java.util;
  2.  
  3. class Collections$1 implements Iterator {
  4.    // $FF: renamed from: i java.util.Iterator
  5.    Iterator field_0;
  6.    // $FF: synthetic field
  7.    private final Collections.UnmodifiableCollection this$0;
  8.  
  9.    Collections$1(Collections.UnmodifiableCollection var1) {
  10.       this.this$0 = var1;
  11.       this.field_0 = this.this$0.c.iterator();
  12.    }
  13.  
  14.    public boolean hasNext() {
  15.       return this.field_0.hasNext();
  16.    }
  17.  
  18.    public Object next() {
  19.       return this.field_0.next();
  20.    }
  21.  
  22.    public void remove() {
  23.       throw new UnsupportedOperationException();
  24.    }
  25. }
  26.