home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1998 January / PCO0198.ISO / browser / net_linx / java40.jar / netscape / util / Enumeration.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-11-03  |  247 b   |  8 lines

  1. package netscape.util;
  2.  
  3. public interface Enumeration {
  4.    boolean hasMoreElements();
  5.  
  6.    Object nextElement();
  7. }
  8.