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

  1. package java.util;
  2.  
  3. class Collections$3 implements Iterator {
  4.    // $FF: renamed from: i java.util.Iterator
  5.    Iterator field_0;
  6.    // $FF: synthetic field
  7.    private final Collections.UnmodifiableMap.UnmodifiableEntrySet this$0;
  8.  
  9.    Collections$3(Collections.UnmodifiableMap.UnmodifiableEntrySet 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 new Collections.UnmodifiableMap.UnmodifiableEntrySet.UnmodifiableEntry((Map.Entry)this.field_0.next());
  20.    }
  21.  
  22.    public void remove() {
  23.       throw new UnsupportedOperationException();
  24.    }
  25. }
  26.