标签: eclipse eclipse-plugin preferences
根据这篇文章http://wiki.eclipse.org/FAQ_How_do_I_load_and_save_plug-in_preferences%3F,我们应该使用如下所示的偏好。
Preferences prefs = new InstanceScope().getNode(MY_PLUGIN_ID);
如何将其放在字段编辑器首选项页面中。
答案 0 :(得分:3)
使用ScopedPreferenceStore并覆盖IPreferencePage.doGetPreferenceStore(),使其可用于对话框。
ScopedPreferenceStore
IPreferencePage.doGetPreferenceStore()