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 / Iterator.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  155 b   |  10 lines

  1. package java.util;
  2.  
  3. public interface Iterator {
  4.    boolean hasNext();
  5.  
  6.    Object next();
  7.  
  8.    void remove();
  9. }
  10.