Is there a way to create a JList that has more than one (I'm aiming at three) levels?
Something like this:
level 1 item
level 2 item
level 2 item
level 3 item
level 1 item
level 1 item
level 2 item
level 2 item
level 3 item
level 3 item
I have (up to)three-level-component GUI in my program, and I would need to somehow enable user to organise the elements of the GUI, to move them above or under each other.
Can it be done with JList, or is there another way of dealing with such things? Maybe some library?