Content assist for Eclipse JSDT based Editor

后端 未结 1 1534
鱼传尺愫
鱼传尺愫 2021-01-07 13:43

In Eclipse content assist is usually implemented by some class that implements IContentAssistProcessor (JavaDoc, example)

How to implement the s

1条回答
  •  傲寒
    傲寒 (楼主)
    2021-01-07 14:24

    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.

    Depending on your use case you may also want to have a look at the related quickAssist and quickFix extension points.

    0 讨论(0)
提交回复
热议问题