home *** CD-ROM | disk | FTP | other *** search
- package netscape.palomar.util;
-
- import java.util.Enumeration;
-
- public interface Tree {
- Tree getParent();
-
- void setParent(Tree var1) throws CascadedException;
-
- void addChildQuiet(Tree var1) throws CascadedException;
-
- void insertChildQuiet(Tree var1, int var2) throws CascadedException;
-
- void removeChildQuiet(Tree var1) throws CascadedException;
-
- int numChildren();
-
- Tree childAt(int var1) throws CascadedException;
-
- int indexOf(Tree var1) throws CascadedException;
-
- Enumeration getChildren() throws CascadedException;
-
- Tree findCommonAncestor(Tree var1) throws CascadedException;
-
- Tree cloneTree() throws CascadedException;
-
- void beenCloned() throws CascadedException;
- }
-