Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Can you please show me some simple code example of how I can undo a Jtree? My Jtree is editable. This is my sample code:

    treeModel = new DefaultTreeModel(root);
    tree = new UndoableTree(treeModel);
    manager = new UndoManager();
    tree.addUndoableEditListener(manager);

    undoAction = new UndoAction(manager);
    redoAction = new RedoAction(manager);
    undoButton.addActionListener(undoAction);
    tree.setInvokesStopCellEditing(true);
    tree.setEditable(true);
    tree.setDragEnabled(true);
share|improve this question
1  
Can you be more specific about what you mean by "undo a JTree"? – casablanca Feb 7 '12 at 3:34
Using the Undo capability in Java Swing. – Joe Michael Feb 7 '12 at 3:39
1  
What exactly are you trying to undo? Where are the classes UndoableTree, UndoAction and RedoAction defined? – casablanca Feb 7 '12 at 3:42
I'm trying to undo manual edits made to the JTree. The code I posted is just a sample because this website didnt let me post a short question. – Joe Michael Feb 7 '12 at 3:46
It would really help if you provided more context. If you can show us what you've done so far and what exactly isn't working, we might be able to help you out, but we can't provide a general answer to "please give me some code to do this". – casablanca Feb 7 '12 at 3:54
show 2 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.