我通过以下代码更改打开帮助搜索偏好设置:
IEclipsePreferences pref = InstanceScope.INSTANCE.getNode(HelpBasePlugin.PLUGIN_ID);
pref.put(IHelpBaseConstants.P_KEY_SEARCH_FROM_BROWSER, "whatever");
//apparently the second String is unimportant as it will always change "Open Help Search" to "In the dynamic help view"
无论如何,现在我想将打开帮助搜索更改回在浏览器中
但是,通过IHelpBaseConstants查看,我发现打开帮助查看文档只有值和键。
是否有其他类,API或我可能错过的内容可以更改帮助偏好设置?
答案 0 :(得分:1)
此首选项是一个布尔值,因此您应该使用:
pref.putBoolean(IHelpBaseConstants.P_KEY_SEARCH_FROM_BROWSER, true/false);
任意值似乎都有效,因为getBoolean
代码使用:
Boolean.valueOf(result).booleanValue();
转换首选项字符串。这会将字符串true
以外的任何内容视为false。