I have a submenu populated with some actions, however the name that appears on them is not desirable. Instead of "Copy" and "Paste", I get the less desirable: copy-to-clipboard, paste-to-clipboard. I need to change that.
//Submenu
SubMenu = new JMenu("Paste");
menuOptions.add(SubMenu);
Action textActionCopy = new DefaultEditorKit.CopyAction();
Action textActionPaste = new DefaultEditorKit.PasteAction();
//Copy
SubMenu.add(textActionCopy);
//Paste
SubMenu.add(textActionPaste);