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 / TreeNode.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-03-19  |  616 b   |  20 lines

  1. package javax.awt.swing.tree;
  2.  
  3. import java.util.Enumeration;
  4.  
  5. public interface TreeNode {
  6.    TreeNode getChildAt(int var1);
  7.  
  8.    int getChildCount();
  9.  
  10.    TreeNode getParent();
  11.  
  12.    int getIndex(TreeNode var1);
  13.  
  14.    boolean getAllowsChildren();
  15.  
  16.    boolean isLeaf();
  17.  
  18.    Enumeration children();
  19. }
  20.