home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1998 September / PCO_0998.ISO / browser / ns405lyc / netcast.z / ncjava10.jar / netscape / palomar / util / Tree.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-03-06  |  983 b   |  30 lines

  1. package netscape.palomar.util;
  2.  
  3. import java.util.Enumeration;
  4.  
  5. public interface Tree {
  6.    Tree getParent();
  7.  
  8.    void setParent(Tree var1) throws CascadedException;
  9.  
  10.    void addChildQuiet(Tree var1) throws CascadedException;
  11.  
  12.    void insertChildQuiet(Tree var1, int var2) throws CascadedException;
  13.  
  14.    void removeChildQuiet(Tree var1) throws CascadedException;
  15.  
  16.    int numChildren();
  17.  
  18.    Tree childAt(int var1) throws CascadedException;
  19.  
  20.    int indexOf(Tree var1) throws CascadedException;
  21.  
  22.    Enumeration getChildren() throws CascadedException;
  23.  
  24.    Tree findCommonAncestor(Tree var1) throws CascadedException;
  25.  
  26.    Tree cloneTree() throws CascadedException;
  27.  
  28.    void beenCloned() throws CascadedException;
  29. }
  30.