我正在尝试将我的大部分菜单合并到 2 个类似的应用程序中,这些应用程序共享很多类。部分原因是我试图将我能做的任何事情付诸行动。我遇到的问题是我想要菜单项使用相同的加速器。有没有办法可以在操作中设置它,这样我就不必复制我的代码来设置加速器?
package com.protocase.viewer.actions;
import com.protocase.viewer.DesignerApplication;
import java.awt.event.ActionEvent;
import java.awt.event.KeyEvent;
import javax.swing.AbstractAction;
import static javax.swing.Action.MNEMONIC_KEY;
import static javax.swing.Action.SHORT_DESCRIPTION;
/**
*
* @author davidh
*/
public class NewEnclosureAction extends AbstractAction{
private DesignerApplication app;
public NewEnclosureAction(DesignerApplication app) {
super();
this.app = app;
putValue(SHORT_DESCRIPTION, "New");
putValue(AbstractAction.NAME, "New");
putValue(MNEMONIC_KEY, KeyEvent.VK_N);
}
@Override
public void actionPerformed(ActionEvent e) {
app.OnNew();
}
}
…………
JMenuItem newMit = new JMenuItem(new NewEnclosureAction(this));
newMit.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_N, ActionEvent.ALT_MASK));
newMit.getAccessibleContext().setAccessibleDescription("New Enclosure from template");
fileMenu.add(newMit);
…………
我希望将 setAccelerator 调用移至我的操作类中。
有没有办法做到这一点?