I am trying to construct a JTree to show the following data. The program should he able to read any data in this format.
ChildNode--------Parent Node
Employee--------Root
Visitors----------Root
Staff------------Employee
Students--------Employee
Graduates-------Students
Undergrads------Students
Interns----------Employee,Visitors
I have this two columns of info stored in two linked list. LinkedList A and LinkedList B. A has all the child nodes and B has all the parent nodes
ChipsNcoke