home *** CD-ROM | disk | FTP | other *** search
/ S283 Planetary Science &… the Search for Life CD 3 / 0_CD-ROM.iso / install / jre1_3 / lib / rt.jar / javax / swing / tree / TreeNode.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  363 b   |  20 lines

  1. package javax.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.