/**
* Defines an <code>Action</code> object with a default
* description string and default icon.
*/
public ActionPaste(Mediator mediator) {
super("Paste", "Paste", mediator);
putValue(SHORT_DESCRIPTION, "Paste");
//Conti Andrea
//putValue(MNEMONIC_KEY, new Integer(KeyEvent.VK_V));
putValue(MNEMONIC_KEY, new Integer(KeyEvent.VK_P));
putValue(ACCELERATOR_KEY, KeyStroke.getKeyStroke(KeyEvent.VK_V, InputEvent.CTRL_MASK));
//end
setEnabled(false);
}
ActionPaste.java 文件源码
java
阅读 21
收藏 0
点赞 0
评论 0
项目:QN-ACTR-Release
作者:
评论列表
文章目录