Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I developed a JTree. You can download the complete code of that in here

http://www.mediafire.com/?9vchs8zj3h0hc7g

each node can be verified or not.I have a menu in that

I expect the menu to do these works for me, but I do not know how.

  • New: Should create a new JTree
  • Save: Save the current JTree
  • Open: Open the last JTree which user has created and has saved it

The question is: how should I do that?

share|improve this question
1  
You should post the relevant code here. – Swapnil Jan 19 at 8:39
did you try anything? – doniyor Jan 19 at 8:41
The code is very short and understandable i do not know what to do? – Salman Jan 19 at 8:46
5  
"The code is very short and understandable" Excellent! Post an SSCCE. BTW - an external link to a RAR? No thanks. – Andrew Thompson Jan 19 at 8:56
I'm not sure your talking about a JMenu or JPopupMenu, but your could start by having a look at How to use Menus – MadProgrammer Jan 19 at 11:02
show 1 more comment

closed as too localized by Will Jan 21 at 17:08

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

Add action listeners to each button, in the one for the new button simply create a new instance of your JTree and add it to the form, as well as removing the old one.
Save could add a JTree to a stack or array and Open could list them and allow the user to select one from the stack, before performing the same actions as new does.

share|improve this answer

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