home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 139 / dpcs0999.iso / Web / CFserver / data1.cab / Java / netscape / util / Enumeration.class (.txt) < prev    next >
Encoding:
Java Class File  |  1999-04-12  |  265 b   |  8 lines

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