FileDocCategorySizeDatePackage
FSTree.javaAPI DocExample2379Thu Oct 24 20:14:28 BST 2002None

FSTree

public class FSTree extends JTree

Fields Summary
Constructors Summary
public FSTree()

 super(); init(); 
public FSTree(TreeModel newModel)

 super(newModel); init(); 
public FSTree(TreeNode root)

 super(root); init(); 
public FSTree(TreeNode root, boolean asks)

 super(root, asks); init(); 
Methods Summary
private voidinit()

    // We don't want to export anything from this tree, only import
    setDragEnabled(false);
    setTransferHandler(new FSTransfer());