Content assist for Eclipse JSDT based Editor(基于 Eclipse JSDT 的编辑器的内容辅助)
问题描述
在 Eclipse 中,内容辅助通常由实现 IContentAssistProcessor
(JavaDoc, 例子)
In Eclipse content assist is usually implemented by some class that implements IContentAssistProcessor
(JavaDoc, example)
如何为基于 JSDT 的编辑器实现相同的 CompletionProposal
?
How to implement the same CompletionProposal
s for JSDT based Editor?
我知道的唯一例子是 http://code.google.com/a/eclipselabs.org/p/jsdt-jquery/ ,但它很大且不清楚如何扩展 JSDT 以进行代码辅助.
The only example I know is http://code.google.com/a/eclipselabs.org/p/jsdt-jquery/ , but it is large and unclear how to extend JSDT for code assist.
JSDT 中还有其他 API 吗?请指出要使用的 API.
Are there other APIs in JSDT? Please point to APIs to use.
相关
如何扩展javascript编辑器Eclipse中的JSDT与添加新功能
推荐答案
你需要实现完成提议扩展点.在那里,您必须指定一个实现必要接口的类,但它与非常通用的 IContentAssistProcessor 不同.
You need to implement the completion proposal extension point of the JSDT editor. In there you have to specify a class implementing the necessary interface, but it is a different one than the very generic IContentAssistProcessor.
根据您的用例,您可能还想查看相关的 quickAssist 和 quickFix 扩展点.
Depending on your use case you may also want to have a look at the related quickAssist and quickFix extension points.
这篇关于基于 Eclipse JSDT 的编辑器的内容辅助的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:基于 Eclipse JSDT 的编辑器的内容辅助
基础教程推荐
- 降序排序:Java Map 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01