Java Swing component that displays a set of hierarchical data as an outline.

learn more… | top users | synonyms

1
vote
1answer
31 views

JTree valueChanged event gets called before focusLost of another component on clicking a node

I have a JTree where each node of the tree represents some user data. The data is editable and is stored in a file/db. There are a bunch of JTextField that lets you edit/update the user data for the ...
0
votes
0answers
7 views

Updating collapsed JTree Node labels depend on children

I have a tree structure like this Grampa Jones - $1500 ($250 Aunt Jenny + $150 Uncle Tom + $600 Mom + $500 Grampa) -Aunt Jenny - $250 ($50 Bob + $100 Joe + $100 Auny Jenny) *Cousin Joe ...
0
votes
2answers
29 views

TreeCellRenderer: how to set background color?

I've written a custom TreeCellRenderer in order to change a components appearance. Everything works fine, except that setBackground has no effect. The code is definitely executed as the foreground ...
0
votes
0answers
35 views

Creating custom JTree icon, getTreeCellRendererComponent only called for top 2 levels of tree

I have a tree that has hundreds of nodes nested to 5 levels deep. What happens is the println statement below will print all nodes in the first 2 levels of the tree, but not the lower 3 levels. Also ...
2
votes
1answer
51 views

Custom CellRenderer invoked but appears to have no effect

To put it simply: why doesn't the following small example show a light gray background on the third item in the tree control? The code creates a JTree, populates it with three strings (directly ...
2
votes
2answers
45 views

Java tree nodes from enum values

I populate my JTree with nodes from enum values. But the nodes display in all uppercase text. This is undesirable as I would like the nodes to display in lower case. example: public enum ...
1
vote
0answers
31 views

Shared border for all node's children

What is the easiest way to create one common border for all children of a given node? I have a code that result you can see on the first picture (created my own TreeRenderer, border added in ...
0
votes
1answer
38 views

How to remove grandchild from JTree?

My current JTree is set up as follows Root Child 1 Grandchild 1.1 Grandchild 1.2 Child 2 Grandchild 2.1 Grandchild 2.2 Question is, how can I remove any of the selected Grandchild? When I ...
-2
votes
0answers
41 views

How to construct a JTree in Java, from datetime string array?

I have a date-time string array, with about 140.000 elements: 20121231235959 19920119121256 I can construct a tree from these, with first rendering them to a TreeMap, then from the multidimensional ...
0
votes
0answers
38 views

DnD from JTree to JPanel my Graphics2D class

I'm having a problem in finding some source code regarding to my case where I have my JTree at left JSplitPane and I just want to Drag and Drop my Graphics2D from other class to JPanel from the right ...
0
votes
0answers
23 views

JTree getCellRenderderComponet refers to a removed child

I have a JTree with a custom TreeCellRenderer. DefaultMutableTreeNode myTreeRoot = new DefaultMutableTreeNode(); JTree myTree = new JTree(myTreeRoot); myTree.setCellRenderer(new ...
0
votes
1answer
30 views

Business Logic design solutions for constructing a JTree with a fixed number of constants

As part of my homework, I've been asked to create a JTree Model with a fixed set of constants (Authors and Books) Presented below is only a small subset of constants to include. Is there a more ...
0
votes
0answers
17 views

Nested JTrees : Expression tree

I am trying to convert a postfix expression to an expression tree. My method is to have a stack of JTree for the expression tree, a stack of string for paranthesis and a stack of nodes for operators. ...
0
votes
1answer
34 views

How do I change the “root” directories name in JTree?

I have a simple implementation of JTree: tree1 = new JTree(LibObj.collectionToStringArray(LibObj.books)); tree1.setRootVisible(true); scrollPane2 = new JScrollPane(tree1); ...
0
votes
3answers
75 views

Creating dynamic JTree from absolute file path

private void createNodes(DefaultMutableTreeNode top) { List <String> files = new ArrayList<String>(); //getFileNames() returns array list of file name with complete path ...
0
votes
1answer
73 views

How to export JTree data as XML file by using JDOM

I have a jtree and need to save each child level element save as xml, I tried to using below code to implement it, but it gives errors for converting numeric data of the xml document, Error message ...
1
vote
1answer
66 views

Binding HashMap<String, String> to MutableTreeNode

I need to bind a Hashmap to a MutableTreeNode so that I can display that in a JTree. I have the following code: static Map<String, String> form = new LinkedHashMap<String,String>(); I ...
0
votes
0answers
105 views

Displaying a tree data structure in Java GUI

I intend to display a tree in Java GUI. The nodes of the tree will depict the function names of the program which the user will enter during runtime and the edges of the tree will depict a function ...
0
votes
1answer
26 views

Can't passing jtree value node

i got problem with passing value of jtree's node. I converted the node value to string, and then i passed the string to another method that return string from database to display in textpane , but ...
0
votes
2answers
50 views

change the jtree node text runtime

I am trying to create a JTree in java swing now i want to change the node text at runtime try { int a=1,b=2,c=3; DefaultMutableTreeNode root = new DefaultMutableTreeNode("A"+a); ...
1
vote
1answer
47 views

JTree does not display inside JScrollPane

I need to display account names for my program and I want to do this using JTree inside a JScrollPane. Here is my code: public void loadAccounts() { accountsRoot = new ...
0
votes
1answer
45 views

Jtree Renderer to set custom icons not working

I am trying to Parse the below XML file and create an JTree based on it with custom Icons. <OBJECTS> <WINDOW NAME = "WINDOW 01" URL = "URL 01"> <PAGE NAME = "PAGE 01" URL = ...
0
votes
1answer
34 views

JTree node not getting added as expected

I am trying to Parse the below XML file and create an JTree based on it. <OBJECTS> <WINDOW NAME = "WINDOW 01" URL = "URL 01"> <PAGE NAME = "PAGE 01" URL = "PAGE URL 01"> ...
0
votes
0answers
40 views

How to dynamically expand a JTree after adding some nodes?

I wrote a simple app in Java RMI and I want to show some objects from server in JTree. The main concept is that, there can be forums, and subforums: JAVA_FORUM | | - - BASICS | - - PROFESSIONALS ...
1
vote
1answer
118 views

Creating a JTree out of an XML document using DOM parser

package xml; import javax.xml.parsers.*; import org.w3c.dom.*; import org.xml.sax.*; import javax.swing.*; import javax.swing.tree.DefaultMutableTreeNode; import java.io.*; public class ThirdParser ...
0
votes
1answer
60 views

JTree selection on mouse release

I'm using a JTree to generate some tab for my application. Every time I select a node on right panel I load a new page. I'd like to generate the node selection event on mouse release.
0
votes
0answers
53 views

how to remove selected jtree from several jtrees by right clicking on

In my GUI I have to load several XML files according to JTree structure one by one, If I want to edit or remove a complete JTree or value by right clicking on, how can I do that efficiently? any ...
0
votes
1answer
84 views

JTree implementation

For some strange reason when I implement a JTree in java I don't see the expansion lines (angled) on Mac OSX; but when the tree is expanded to show all the nodes, I see them on Windows. I have tried ...
2
votes
3answers
198 views

JTree cell editor receives mouse clicks differently depending on OS

I've created a tree cell renderer/editor framework that is admittedly a little bit hacky, but it works perfectly on Windows and Linux. The image below illustrates a sample setup. The goal is that ...
0
votes
0answers
29 views

add icons to JTree [duplicate]

How can I add icons to a JTree. I want add a different icon to a root and different icons to the leafs of the root and different to the leafs of a leaf. I am implementing a Jtree to show a user, the ...
1
vote
1answer
48 views

Adding custom property to JTree and also print it

I'm trying to implement a FP-Tree. So I have used a JTree. I have created my tree successfully. But I need to add two custom properties to my nodes, 'Label' and 'LabelCount' And I also need to print ...
0
votes
1answer
35 views

How can i access the subnode in Jtree

anyone help me i have Jtree and Subnode i want to click sub node and display one window form in java am using netbeans.
-1
votes
2answers
76 views

JTree is badly blurred when scrolling [closed]

I have a JTree inside a JScrollPane, and when I use the scrollbar the tree gets all blurred up, as you can see in the image below. It gets back to normal if I do something to make it repaint, like ...
0
votes
2answers
62 views

How to list only non hidden and non system file in jtree

File f=new File("C:/"); File fList[] = f.listFiles(); When i use this it list all system file as well as hidden files. and this cause null pointer exception when i use it to show in jTree like ...
1
vote
2answers
90 views

How to edit a JTree node with a single-click

I have a JTree, and would like for its getTreeCellEditorComponent() method to be invoked when I single click on a node. According to the documentation for the DefaultTreeCellEditor class (which I ...
1
vote
2answers
61 views

Get new user object string when user is editing a node within my JTree and clicks away from the node

I've created a custom TreeModel by extending DefaultTreeModel, so the user can rename nodes in my JTree. This works fine if my user inputs a new name and then hits enter. If instead of hitting ...
-1
votes
1answer
104 views

How to set custom icons for individual nodes on a JTree?

I need to be able to set icons for the JTree individual nodes. For example, I have a JTree and I need the nodes to have custom icons that help represent what they are. (wrench icon) Settings (bug ...
0
votes
1answer
90 views

JTree how to know a node has been expanded but not selected

JTree provides SelectionListener and ExpansionListener. But as far as I can see when you only expand a node (click the +/- icon) a selection event is fired as well. 1) If I click on the expansion icon ...
1
vote
1answer
92 views

File.list() vs File.listFiles()

My question is: if this two functions have something different? I mean I know that they return something different, but is it possible that number of elements in one would be different then in the ...
0
votes
1answer
43 views

custom ui delegates for TreeUI

For some reason, my TreeUI doesn't get applied. I am using MetalTheme and want to customize the TreeUI. So, I started by copying the TreeUI code and renaming the class EzTreeUI. Am I doing this right ...
1
vote
0answers
51 views

JTree will only update one node. DOM4J DocumentTreeModel Underlying it

I have a JTree that I have linked with an XML Doc using DOM4J. I have a popup that allows me to add nodes where I select. public void addNode() { BranchTreeNode node = (BranchTreeNode) ...
1
vote
1answer
178 views

How to build a jtree dynamically

The SSCCE of the problem is as follows. I am dynamically populating JTree, but nothing is happening. import java.awt.BorderLayout; import java.awt.Dimension; import java.awt.GridLayout; import ...
1
vote
1answer
61 views

How do I auto-expand a JTree when setting a new TreeModel?

I have a custom JTree and a custom JModel; I would for the JTree to "auto-expand" when I give it a new model. At the moment, it simply collapse all the nodes to the root. Here is an example: private ...
1
vote
2answers
74 views

How to optimize displaying different JPanel depending on JTree selection

I have a JTree with several nodes and each node has a different associated JPanel I want to display to the user. I've made use of a custom TreeCellRenderer and my code currently works as is, but (I ...
3
votes
2answers
450 views

How does JTree display file name?

In my project, I am trying to add a file explorer so the user can select files from a given directory. I want to limit this view to the project's root folder (which is determined by the user). This is ...
1
vote
1answer
95 views

Weird issue with JTree.expandPath after removing/replacing the only child

I conjured up this SSCCE to reproduce some weird behavior I encountered in a larger program: import java.awt.BorderLayout; import java.awt.EventQueue; import java.awt.event.ActionEvent; import ...
0
votes
0answers
44 views

Refresh for Lazy Loaded JTree and maintain expansion state

I am facing issues while maintaining the expansion state of a Lazy Loaded JTree... The data is populated via swing worker on expansion of a node. Now I have to support a refresh for the same, such ...
1
vote
2answers
90 views

javax.swing.tree.TreePath Selection to XPath Query String

How can I get the corresponding XPath Query String from a selected TreePath? a |-b +-c |-b +-d If I select "d" I want to get something like /a/b[2]/d EDIT: For now I wanted to loop through ...
0
votes
1answer
82 views

run time error(null point exception) in creating a recursive tree

I want to take in the following as Json input and convert it into a tree data structure in java. { "component": "A", "status": 0, ...
1
vote
1answer
118 views

Dynamically create nodes in JTree from a SQL query

I have a hierarchical structure like this: Lot |_Stages |_Samples Example: Lot1 |_Stage1 |_Sample11 |_Sample12 |_Stage2 |_Sample21 |_Sample22 The idea is that the ...

1 2 3 4 5 13