Add the same object in JPopupMenu and JMenuBar
Hello,
Can i do this ?
jMenuBar1.add(jMenuFile);
jMenuFile.add(jMenuItemAdd);
jPopupMenu1.add(jMenuItemAdd);
When i do this my jMenuItemAdd appears only in the jPopupMenu1 and not in jMenuFile. So how can i add same object in many Container ?
sorry for my english and thanks to your response.

