我正在寻找一种方法来禁用"更多结果:"在我的Eclipse RCP插件的属性对话框中(基于Eclipse 3.6.1)。
这是我试图摆脱的一个例子(不是确切的属性)。
我以为我刚才看到过这个问题,但不能再找到它了。
showSearchDescription
选项看起来很有希望,所以我补充道
我的plugin_customization.ini文件org.eclipse.help.base/showSearchDescription=false
,但没有区别。
答案 0 :(得分:1)
此代码位于org.eclipse.help.ui.internal.views.ContextHelpPart
。控制包含“更多结果”的声明是:
if (!RelatedTopicsPart.isUseDynamicHelp() && searchTerms != null && searchTerms.length > 0)
searchTerms
是请求的帮助数据,因此我认为它始终为非null且长度为> 0
RelatedTopicsPart.isUseDynamicHelp()
测试未记录的首选项,但如果更改了对象,则会导致在对话框中显示其他内容(首选项为'org.eclipse.help.base / show_dynamic_help')。
所以我认为你不能转向这一部分。