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 / javax / naming / NamingEnumeration.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  272 b   |  12 lines

  1. package javax.naming;
  2.  
  3. import java.util.Enumeration;
  4.  
  5. public interface NamingEnumeration extends Enumeration {
  6.    Object next() throws NamingException;
  7.  
  8.    boolean hasMore() throws NamingException;
  9.  
  10.    void close() throws NamingException;
  11. }
  12.