When you open a XML in Eclipse, the content can be shown in as a tree structure like

XML tree view

The tree is "embedded" in a table and the content is showed in a seperate column.

This would be very nice to replicate in Swing, not for XML content specifically, but for similar data with tree structure.

UPDATE

I just learned about JTreeTable, but I really need to do this in NetNeans. Should probably have mentioned that, sorry.

Any ideas?

link|improve this question

What do you mean by "do it in Netbeans"? Do you need to use the component in a GUI designer? – lhballoti Aug 19 '11 at 14:35
@lhballoti - Yes, It's for work. – Theodor Aug 22 '11 at 7:11
feedback

3 Answers

up vote 7 down vote accepted

SwingX has a JXTreeTable, it's based on but much improved over the oldish examples (links to sun code/article) cited by @mKorbel

link|improve this answer
big sorry I forgot ... +1 – mKorbel Aug 19 '11 at 15:53
@kleopatra - For NetBeans, i'm not so sure, see stackoverflow.com/questions/5612782/… – Theodor Aug 22 '11 at 7:49
@Theodor: repeating myself (the comment I made there) - mixing a beaninfo 0.9.7 with a swingx of 1.6 is certain to pose problems ;-) – kleopatra Aug 22 '11 at 9:33
@kleopatra - After some head scratching, JXTreeTable works beautiful. Sorry that I doubted you =) Thank you. – Theodor Aug 24 '11 at 12:49
feedback

check for TreeTable or one example, another code depots by one Swing Guru here or in Netbeans IDE for similair implementation with name Outline, something more here, one of commercial products

link|improve this answer
1  
+1 for Outline. – trashgod Aug 20 '11 at 2:22
feedback

You could try subclassing JTable and making your own custom renderer with behavior that adds/removes new rows when you expand/collapse a node.

link|improve this answer
-1 - you tried it? Very unlikely to get anything half-way robust by on-the-fly custom renderers, there's more issues to solve than mere visuals. Though, at it's very base, the typical J/X/TreeTable implementations do have a custom renderer for the hierarchical column :-) – kleopatra Aug 19 '11 at 14:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.