如何在 FieldEditorPreferencePage 中使用实例范围
根据这篇文章 http://wiki.eclipse.org/FAQ_How_do_I_load_and_save_plug-in_preferences%3F我们应该使用如下所示的首选项。
Preferences prefs = new InstanceScope().getNode(MY_PLUGIN_ID);
如何将其放入字段编辑器首选项页面中。
According to this article http://wiki.eclipse.org/FAQ_How_do_I_load_and_save_plug-in_preferences%3F we're supposed to use preferences as shown below.
Preferences prefs = new InstanceScope().getNode(MY_PLUGIN_ID);
How do I put it in a field editor preference page.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
ScopedPreferenceStore
并覆盖 < code>IPreferencePage.doGetPreferenceStore() 以使其可用于对话框。Use
ScopedPreferenceStore
and overrideIPreferencePage.doGetPreferenceStore()
to make it available for the dialog.