home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 2000 March / pcp161a.iso / handson / files / copyjava.exe / com / sun / java / swing / tree / DefaultMutableTreeNode$1.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-02-26  |  1.1 KB  |  15 lines

  1. package com.sun.java.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.