Hello

I'm wanting a different view of the JTree, and was wondering if anyone knew where to start with rewriting t, or if an implementation already existed,

Instead of a JTree looking like:

Root
|
|__ Node
| |___leaf
| |___leaf
etc....

I'd like it to look like

Root
|
--------------
| |
Node Node
|
------------
| |
Leaf Leaf


I'm sure you get the picture, i've used all the JComponents that Java has to offer, but am unsure how to implement my own so it is still as versatile as the JTree Implementation...

Just wanted to borrow some gray matter, and try and understand where to start....


Cheers

Andy