I would like to add right click menu for my program. I added basit menu with the following code:
Pmenu = new JPopupMenu("Menu");
menuItem = new JMenuItem("Sections");
Pmenu.add(menuItem);
menuItem = new JMenuItem("Numbers");
Pmenu.add(menuItem);
However I want to add submenu to these menus, such as user hover the Sections menu, submenu will open and sections are shown.