我们正在开发 Eclipse 插件项目。我们使用 StructuredTextEditor 来显示 XML 数据。现在我们正在通过标准的 Eclipse 帮助系统集成我们的文档。但是对于 StructuredTextEditor 它不起作用。例如:
Composite parent;
...
parent.addHelpListener(new HelpListener()
{
@Override
public void helpRequested(HelpEvent e)
{
EsbDevelopmentPlugin.showHelp(HELP_ID);
}
});
parent.setFocus();