pydevfileeditorinputstub.java
来自「Python Development Environment (Python I」· Java 代码 · 共 34 行
JAVA
34 行
package org.python.pydev.parser;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.ui.IEditorInput;
import org.eclipse.ui.IPersistableElement;
public class PydevFileEditorInputStub implements IEditorInput {
public boolean exists() {
return true;
}
public ImageDescriptor getImageDescriptor() {
throw new RuntimeException("Not implemented");
}
public String getName() {
throw new RuntimeException("Not implemented");
}
public IPersistableElement getPersistable() {
throw new RuntimeException("Not implemented");
}
public String getToolTipText() {
throw new RuntimeException("Not implemented");
}
public Object getAdapter(Class adapter) {
throw new RuntimeException("Not implemented");
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?