home *** CD-ROM | disk | FTP | other *** search
/ U.S. Robotics Connections 5 / CONNECTIONS.iso / content / software / office / hotoffic / optional / java_upd.exe / classr.exe / java / util / Enumeration.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-05-08  |  261 b   |  8 lines

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