how to create Horizontal Tree and also to represent the nodes with buttons
JTree in swing provides us with the class to generate only the vertical trees. but i want to generate horizontal trees like
A
/\
BC
/\
D E
and also represent the nodes A , B,C...with some rectangle figure with a text 'A'..
is there any class that I could use?

