home *** CD-ROM | disk | FTP | other *** search
/ Symantec Visual Cafe for Java 2.5 / symantec-visual-cafe-2.5-database-dev-edition.iso / VCafe / debug / databind.jar / javax / awt / swing / tree / DefaultMutableTreeNode$1.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-03-19  |  1.3 KB  |  15 lines

  1. package javax.awt.swing.tree;
  2.  
  3. import java.util.Enumeration;
  4. import java.util.NoSuchElementException;
  5.  
  6. final class DefaultMutableTreeNode$1 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.