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

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