this.node = n;
}
public void actionPerformed(ActionEvent e) {
FSTreeModel treeModel = (FSTreeModel) this.main.getFsTree().getModel();
TreePath path = treeModel.pathToNode(this.node);
this.main.getFsTree().setSelectionPath(path);
this.main.getFsTree().scrollPathToVisible(path);
}
}