vote up 0 vote down star

In my application I have 2 JTree controls in a JPanel. How can I transfer data between them, so that the items from the source tree are removed.

flag

1 Answer

vote up 0 vote down

Write appropriate subclasses of javax.swing.TransferHandler for both trees. Use TransferHandler.MOVE as the source action. Override exportDone() and see if the action includes the MOVE flag. If so, delete the object represented by the Transferable.

Also see this question: http://stackoverflow.com/questions/1526291/adding-drag-and-drop-support-to-jtree

link|flag

Your Answer

Get an OpenID
or

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