package jmathlib.tools.treeanalyser;
import javax.swing.tree.DefaultTreeModel;
import javax.swing.tree.TreeNode;
import javax.swing.tree.TreePath;
import javax.swing.tree.DefaultMutableTreeNode;
import java.awt.Color;
/**
* SampleTreeModel extends JTreeModel to extends valueForPathChanged.
* This method is called as a result of the user editing a value in
* the tree. If you allow editing in your tree, are using TreeNodes
* and the user object of the TreeNodes is not a String, then you're going
* to have to subclass JTreeModel as this example does.
*/
public class SampleTreeModel extends DefaultTreeModel
{
public SampleTreeModel(TreeNode newRoot) {
super(newRoot);
}
/**
* Subclassed to message setString() to the changed path item.
*/
public void valueForPathChanged(TreePath path, Object newValue)
{
/* Update the user object. */
DefaultMutableTreeNode aNode = (DefaultMutableTreeNode)path.getLastPathComponent();
TreeData treeData = (TreeData)aNode.getUserObject();
treeData.setString((String)newValue);
/* UUUhhhhh, pretty colors. */
treeData.setColor(Color.green);
/* Since we've changed how the data is to be displayed, message
nodeChanged. */
nodeChanged(aNode);
}
}