Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
378 views

Java Swing JTree TreeModel - how to do lazy inialization

I have a JTree in my swing app, to display a long list of data (int tree mode). the issue is that TreeModel loading all items during initialization and I don't need to load them all. in one screen ...
3
votes
1answer
441 views

store state/expanded nodes of a jtree for restoring state

I am working with JTree. I would like to know what is best the way to know which nodes are expanded in a JTree, so as to save its state (i.e. save all expanded paths). So that if I call ...
3
votes
2answers
2k views

Java: How to display an XML file in a JTree

I would like to have a way to display the contents of an XML file in a JTree. I have already accomplished this using DOM, by implementing a custom TreeModel (and TreeCellRenderer). However it is very ...
2
votes
3answers
114 views

Java Swing Application with a JTree - MVC Design: Where to position a TreeModel object architecturally?

Please excuse the verbosity of this question, as in writing it I am attempting to think through my design problem! I have inherited a Swing application which requires re-architecting into an RMI ...
2
votes
2answers
90 views

Java Custom Tree Model updating problem

Here is structure of the tree: root -branches --leafs I use for TreeModel DefaultTreeModel and my objects implement TreeNode interface leaf is some Object: public class Leaf implements TreeNode { ...
2
votes
2answers
212 views

expand Jtree at last modified area?

I am using dom4j to create a DocumentTreeModel from a dom4j document. I display this DocumentTreeModel inside JScrollPane. I have a button that adds a new node to the dom4j document, and recreates ...
2
votes
1answer
166 views

How to fill Gtk::TreeModelColumn with a large dataset without locking up the application

I need to fill in a large (maybe not so much - several thousands of entries) dataset to a Gtk::TreeModelColumn. How do I do that without locking up the application. Is it safe to put the processing ...
2
votes
2answers
613 views

Creating a complex tree model in Qt

I'm writing an IRC Client (yes another one). Long story short. I'm writing a Server dialogue that keeps a list of this: Identity Networks Channels Addresses I have 3 different ...
2
votes
2answers
306 views

Java Swing: how do I define how a JTree displays the “user object”?

When using a JTree, a "user object" of a DefaultMutableTreeNode can be set. This can be of any kind, but to display it, its toString() value is used. This is not what I need. How can I change the way ...
1
vote
1answer
116 views

Adding and removing nodes from a JTree

I have a very basic JTree. As I am on a rush, I'd prefer not to use TreeModel if it is not needed. I wrote a SSCCE to expose the problem: Sometimes I add a node. Other times I remove them. When I ...
1
vote
0answers
46 views

Is the GTKMM set_value_vfunc function a lie?

I've been attempting to modify the contents of a custom tree view that inherits from TreeModel and TreeSortable. However, the virtual function set_value_impl contains only an assert. When I tried to ...
1
vote
2answers
204 views

Why isn't my JTree updating when the TreeModel adds new nodes?

I am using a DefaultTreeModel populated with an override of DefaultMutableTreeNode which supports optionally changing the display string of a node in a tree. As shown in the code below, in my form I ...
1
vote
1answer
127 views

How to clone a java TreeModel?

I want to have 2 TreeModels: the root of the second TreeModel is a node of the first TreeModel (therefore, the second TreeModel is a subtree of the first TreeModel). I think that I can easily do this ...
1
vote
1answer
64 views

Java: serverside Persistent storage solution for TableModel and TreeModel?

Scenario: client would logon, create their own TableModel and TreeModels and be able to access it at a later time. TableModel and TreeModel which comprises of Java class objects as well as strings. ...
1
vote
2answers
303 views

Dynamically create node in lwuit for tree view

TreeModel model = new TreeModel() { Node[] sillyTree = { new Node("X", new Node[] { new Node("Child 1", new Node[] { }), new Node("Child 2", new Node[] ...
1
vote
1answer
169 views

How can I show a flat representation of a TreeStore in a TreeView?

I have a TreeStore with objects that I view and manipulate through a GTK TreeView/TreeModel setup. I also have a TreeView showing a treeModelSort of the treeStore, which I use for sorting on columns ...
0
votes
1answer
18 views

Jtree to JPanel

I have a JTree object which uses DefaultTreeModel as model and I add/remove nodes respect to that model. At that point, I need to show tree structure in graphical interface such as JPanel. How can I ...
0
votes
1answer
55 views

JTree How To Change A Node Programatically?

I'm trying for the first time to use and understand JTrees, TreeModels, TreeModes etc. I want to use a Tree to represent Bluetooth devices in the vicinity of my local device. My Bluetooth device is ...
0
votes
2answers
59 views

Updating ImageIcon in JTree without repainting the Tree?

Basically I edit an attribute private string status="OK" in the UserObject() of a DefaultTreeNode(). I have a CustomRenderer which implements DefaultCellRenderer, which sets the Icon by rendering the ...
0
votes
2answers
178 views

Java: serialize TreeModel, TableModel to JSON, and vice versa?

On the client side, a user specified input creates a unique TreeModel and TableModel. This needs to be serialized to JSON for storage on MongoDB (stores JSON document directly). The JSON needs to be ...
0
votes
1answer
99 views

get underlying node data on clicked node on JTree?

basically I am using dom4j library to render the DefaultTreeModel into JTree. DefaultTreeModel parses XML document. Each XML node contains information like attributes, name, id etc. Basically, I add ...
0
votes
1answer
127 views

how to convert xml document parsed by org.dom4j.io.SAXReader into a visual Swing tree?

I have parsed an xml document using org.dom4j.io.SAXReader, is it possible to feed this into javax.swing.tree.TreeModel and generate a dynamically changing visual Swing JTree? For example, when I ...
0
votes
1answer
260 views

FTP JTree of Directory and Files

I'm currently developing an application that will allow people to download the files from the online FTP repository, I have it connecting perfectly with Apache Commons, My only trouble is making a ...
0
votes
1answer
198 views

Updating/refreshing a TreeModel

I have a series of threads retrieving RSS feeds at regular intervals and want to refresh a custom JTree using PropertyChangeSupport. However it uses a custom class implementing TreeModel and I'm not ...
0
votes
1answer
110 views

The working of model.insertNodeInto() function

I have a little confusion: Is the function insertNodeInto used to inserts only a single node and not its sub nodes? for example I have a code snippet as follows: DefaultMutableTreeNode newNode = new ...
0
votes
2answers
165 views

TreeModel backed by Lists

I want to build a TreeModel from some Lists that contain the source data. Now, there's an utility class called DynamicUtilTreeNode that can be used to build trees from arrays, Vectors and Hashtables, ...
0
votes
1answer
144 views

How do I read or write GTK TreeStores from/to files?

I'm new to this. How do I store a TreeStore to a file? I can store specific values from the underlaying TreeStore through the TreeModel interface, but is there any way of "grabbing" the whole ...
0
votes
1answer
975 views

example/tutorial for using TreeModel+AbstractTreeModel?

I have a database containing a hierarchy that I want to display within a JTree. Is there a good example/tutorial for TreeModel and/or AbstractTreeModel that explains how to implement a custom ...
-1
votes
1answer
172 views

how to recursively delete all nodes in JTree?

in a JTree comprised of DefaultMutableTreeNodes, how would you traverse and delete starting from a given Node and all it's ancestors? it should delete starting at it's deepest level , backing upwards ...
-1
votes
1answer
300 views

Refreshing JtreeModel does not work but Jtree updates accordingly

I am using org.dom4j.swing.DocumentTreeModel to construct a Swing Jtree from a parsed DOM document. When I edit the document which the treeModel is constructed from, I expect the Jtree to reflect this ...
-1
votes
2answers
800 views

questions on “virtual trees” (custom TreeModel) in Swing

OK, I couldn't really find a decent example for a custom TreeModel in Swing that uses more than the basic features, so I wrote my own (code follows below) so I can ask questions about it, rather than ...