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 ファイルを使用するにはどうすればよいですか? :ike は C:/test にありますか? 私は試した
href="C:/test/t.html" label="Search about me"/>
また、href で / の代わりに \ を使用してみましたが、sytil は使用しません。ワークスペース内の html ファイルだけが必要だったようです。回避策はありますか?