org.protege.editor.core.ui.view.View.getInputMap()方法的使用及代码示例

x33g5p2x  于2022-02-01 转载在 其他  
字(1.6k)|赞(0)|评价(0)|浏览(109)

本文整理了Java中org.protege.editor.core.ui.view.View.getInputMap()方法的一些代码示例,展示了View.getInputMap()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。View.getInputMap()方法的具体详情如下:
包路径:org.protege.editor.core.ui.view.View
类名称:View
方法名:getInputMap

View.getInputMap介绍

暂无

代码示例

代码示例来源:origin: protegeproject/protege

public void addViewMode(final ViewMode viewMode) {
  viewBarComponent.addMode(viewMode);
  char ch = Character.toLowerCase(viewMode.getName().charAt(0));
  getInputMap(WHEN_ANCESTOR_OF_FOCUSED_COMPONENT).put(KeyStroke.getKeyStroke(ch), viewMode);
  getActionMap().put(viewMode, new AbstractAction() {
    @Override
    public void actionPerformed(ActionEvent e) {
      setViewMode(viewMode);
    }
  });
}

代码示例来源:origin: protegeproject/protege

if (acceleratorKeyStroke != null) {
  String key = "Accelerator" + System.currentTimeMillis();
  getInputMap(JComponent.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT).put(acceleratorKeyStroke, key);
  getActionMap().put(key, action);
  action.putValue(AbstractAction.SHORT_DESCRIPTION,

代码示例来源:origin: edu.stanford.protege/org.protege.editor.core.application

if (acceleratorKeyStroke != null) {
  String key = "Accelerator" + System.currentTimeMillis();
  getInputMap(JComponent.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT).put(acceleratorKeyStroke, key);
  getActionMap().put(key, action);
  action.putValue(AbstractAction.SHORT_DESCRIPTION,

代码示例来源:origin: org.protege/protege-editor-core-application

if (acceleratorKeyStroke != null) {
  String key = "Accelerator" + System.currentTimeMillis();
  getInputMap(JComponent.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT).put(acceleratorKeyStroke, key);
  getActionMap().put(key, action);
  action.putValue(AbstractAction.SHORT_DESCRIPTION,

相关文章