actioninfo.java
来自「Python Development Environment (Python I」· Java 代码 · 共 20 行
JAVA
20 行
/*
* Created on Apr 2, 2006
*/
package org.python.pydev.editor;
import org.eclipse.jface.action.IAction;
public class ActionInfo{
public IAction action;
public String description;
public String binding;
public boolean needsEnter;
public ActionInfo(IAction action, String description, String binding, boolean needsEnter){
this.action = action;
this.description = description;
this.binding = binding;
this.needsEnter = needsEnter;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?