home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1997 November / PCO1197.ISO / FilesBBS / WIN95 / PROD_W95 / F_32579 / java / util / Enumeration.class (.txt) < prev    next >
Encoding:
Java Class File  |  1996-05-03  |  261 b   |  8 lines

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