gpt4 book ai didi

java - IDocument 无法解析为类型

转载 作者:塔克拉玛干 更新时间:2023-11-01 22:09:26 25 4
gpt4 key购买 nike

我是 eclipse 插件开发的新手,我想使用 eclipse 插件从编辑器中获取内容,所以我找到了这个 answer .

但问题是:我收到编译错误 IDocument cannot be resolved to a type。没有可用的快速修复导入。我的 Eclipse 版本是 3.8.2。

我该如何解决这个问题?

我使用的代码(来自链接的答案)是这样的:

public String getCurrentEditorContent() {
final IEditorPart activeEditor = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage()
.getActiveEditor();
if (activeEditor == null)
return null;
final IDocument doc = (IDocument) activeEditor.getAdapter(IDocument.class);
if (doc == null) return null;

return doc.get();
}

enter image description here

我在依赖项中找不到 org.eclipse.jface.text。这是一个快照:

enter image description here

最佳答案

IDocument 位于 org.eclipse.text 插件中,因此您必须将其添加到插件的依赖项列表中。

注意:您还可以将 org.eclipse.jface.text 插件添加到依赖项列表,因为它将包含 org.eclipse.text 插件。

关于java - IDocument 无法解析为类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27621178/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com