Eclipse 文档中缺少 SingleTokenScanner
Eclipse Missing SingleTokenScanner from Documentation
我正在构建一个自定义编辑器作为 Eclipse 插件,我想在其中突出显示语法。我正在关注日食 Platform Plug-in Developer Guide.
我的问题是:
在 PresentationReconciler 的文档中有以下行
dr= new DefaultDamagerRepairer(new SingleTokenScanner(new TextAttribute(provider.getColor(JavaColorProvider.JAVADOC_DEFAULT))));
当我尝试对我自己的语言使用相同的逻辑时,我错过了 class SingleTokenScanner
。
我尝试谷歌搜索了一段时间,只发现 this plugin 不是原生的 eclipse,对我没有帮助。
这只是文档中的错误还是我忽略了什么?
该帮助页面上的文字是:
Recall that the Java editor example implements a JavaPartitionScanner
which partitions the document into content types representing javadoc,
multi line comments, and everything else.
这是告诉您代码来自示例Java 需要安装的编辑器代码。请参阅 'Program Plug-in Developer Guide'
中的 'Examples Guide'
我正在构建一个自定义编辑器作为 Eclipse 插件,我想在其中突出显示语法。我正在关注日食 Platform Plug-in Developer Guide.
我的问题是: 在 PresentationReconciler 的文档中有以下行
dr= new DefaultDamagerRepairer(new SingleTokenScanner(new TextAttribute(provider.getColor(JavaColorProvider.JAVADOC_DEFAULT))));
当我尝试对我自己的语言使用相同的逻辑时,我错过了 class SingleTokenScanner
。
我尝试谷歌搜索了一段时间,只发现 this plugin 不是原生的 eclipse,对我没有帮助。
这只是文档中的错误还是我忽略了什么?
该帮助页面上的文字是:
Recall that the Java editor example implements a JavaPartitionScanner which partitions the document into content types representing javadoc, multi line comments, and everything else.
这是告诉您代码来自示例Java 需要安装的编辑器代码。请参阅 'Program Plug-in Developer Guide'
中的 'Examples Guide'