Link to home
Start Free TrialLog in
Avatar of eric07
eric07

asked on

Changing the tree in JTree?

I'm using Forte IDE and added a JTree via drag and drop.

It creates a default tree so now I want to change it.
the problem is that all the samples I have uses the following code:

DefaultMutableTreeNode root = new DefaultMutableTreeNode( "Top" );

DefaultMutableTreeNode col21 = new DefaultMutableTreeNode ("Line1" );

root.add(col21);

DefaultMutableTreeNode col22 = new DefaultMutableTreeNode ("line2" );

col21.add(col22);

JTree tree = new JTree( root );

The problem is that Forte creates the instance of JTree already and its readonly since this is the part that the ide uses.  So I cant create the tree when creating a new instance of the tree.

Is there another way of doing this?  Maybe a different method?

Thanks
Avatar of david_d
david_d

Hi,

In the declarations you want to write:

  DefaultMutableTreeNode root = new DefaultMutableTreeNode("Root");
  TreePath tp = null;
  JTree jTree1 = new JTree(root);


This creates a root node and assigns it to the JTree (like you have done).

Below is a method which is called when an add button is pressed by the mouse.  It takes a string from a JTextField (addTextField) and adds a def. mut. tree node to the selected node - from the tree.

  void addButton_mouseClicked(MouseEvent e)
  {
    if(addTextField.getText().length() > 0)
    {
      try
      {
        //create def. mut. tree node
          //and add text to it
          DefaultMutableTreeNode dMTN = new DefaultMutableTreeNode(addTextField.getText());
        //create a treepath and assign the selected path
          //from the JTree (the path that is currently selected)
          TreePath myTreePath = jTree1.getSelectionPath();

          //Obtain the last def. mut. tree node from the tree
          //and assign it to Temp
        DefaultMutableTreeNode temp = (DefaultMutableTreeNode)myTreePath.getLastPathComponent();
        //Add the new Def. mut. tree node to temp
          temp.add(dMTN);
          //Update the tree
        jTree1.updateUI();
          //Clear the text field.
        addTextField.setText(new String());
      }
      catch(Exception ee)
      {
        JOptionPane.showMessageDialog(this, "No Node is selected.\nPlease select then press the 'Add' button.");
      }

    }
    else
    {
      JOptionPane.showMessageDialog(this, "No data entered!\nPlease try again!");
    }

  }

This code is taken from a small Swing applet that I have created, if you want the code, html file and everything, provide your e-mail address!

I hope this helps.

David
Avatar of eric07

ASKER

What about this problem though.

Since Forte already did a new on the JTree control.
and now your code wants me to do a another new.  Isnt that creating another instance of the control?  And if so is that ok?

JTree tree = new JTree( root );

The problem is that Forte creates the instance of JTree already and its readonly since this is the part
that the ide uses.  So I cant create the tree when creating a new instance of the tree.
Hi,

Create you data as DefaultTreeModel and set it using JTree.setModel().
Or take existing model using getModel() (It will amost certainly be
DefaultTreeModel with DefaultMutableTreeNodes inside) and modify it.

Regards,
Igor Bazarny
Brainbench MVP for Java 1
www.brainbench.com
Avatar of eric07

ASKER

Do you happen to have a sample on how to do this.  Excuse my ignorance since i'm new to this.

Thanks
ASKER CERTIFIED SOLUTION
Avatar of Igor Bazarny
Igor Bazarny
Flag of Switzerland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of eric07

ASKER

Thanks allot bazarny you really helped me.  I totally missed setModel() member function.  That did the trick