我正在开发一个插件。
我需要你的帮助。我有一个方法表'名字。我需要去找方法' s'单击方法名称时在编辑器中实现。该表具有实现方法的文件的路径和方法的标题。
如果你能帮助我做代码,我会感谢你。
现在我有了打开文件的代码。但是我需要在文件中打开方法的实现。
File fileToOpen = new File(file);
if (fileToOpen.exists() && fileToOpen.isFile()) {
IFileStore fileStore = EFS.getLocalFileSystem().getStore(fileToOpen.toURI());
IWorkbenchPage page = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage();
try {
IEditorPart editor =IDE.openEditorOnFileStore(page, fileStore);
} catch (PartInitException exf) {
// Put your exception handler here if you wish to
}
}
此致