home *** CD-ROM | disk | FTP | other *** search
/ S283 Planetary Science &… the Search for Life CD 3 / 0_CD-ROM.iso / install / jre1_3 / lib / rt.jar / javax / swing / tree / DefaultMutableTreeNode$2.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  435 b   |  15 lines

  1. package javax.swing.tree;
  2.  
  3. import java.util.Enumeration;
  4. import java.util.NoSuchElementException;
  5.  
  6. class DefaultMutableTreeNode$2 implements Enumeration {
  7.    public boolean hasMoreElements() {
  8.       return false;
  9.    }
  10.  
  11.    public Object nextElement() {
  12.       throw new NoSuchElementException("No more elements");
  13.    }
  14. }
  15.