我有一个 Eclipse 插件,它的扩展名为:
<extension
point="org.eclipse.help.contexts">
<contexts
file="contexts.xml"
plugin="my.plugin.id">
</contexts>
</extension>
contexts.xml有:
<contexts>
<context id="test_context" title="About Contexts">
<description>This is written by me.</description>
<topic href="http://www.google.com" label="Search about me" />
</context>
</contexts>
我将其用作:
PlatformUI.getWorkbench().getHelpSystem().setHelp(parent, "my.plugin.id.test_context");
在主题 href 我如何使用位于系统中的 html 文件。?:like 它在 C:/test 中?我试过了
href="C:/test/t.html" label="Search about me"/>
我也尝试在href中使用\而不是/,但仍然没有用。似乎它只需要工作区中的 html 文件!任何解决方法?