开发者

How can two eclipse plugin use the same preferences store?

开发者 https://www.devze.com 2022-12-27 23:31 出处:网络
I have two plugins, say com.site.plugin.core and com.site.plugin.ui. I\'d like to separate core开发者_如何学运维 part from UI part, so at plugin com.site.plugin.ui I created Preferences page where I d

I have two plugins, say com.site.plugin.core and com.site.plugin.ui.

I'd like to separate core开发者_如何学运维 part from UI part, so at plugin com.site.plugin.ui I created Preferences page where I defined some preferences, which should be used by com.site.plugin.core. I check article at Eclipse site, but it is quite outdated, and linked bug also do not provide much info.

So is it possible to do this using standard Eclipse mechanism, or I need use direct low-level API via package org.eclipse.core.runtime.preferences?


I believe that the UI depends on Core and not otherwise. In this case, you could use the Core's preference store in the UI plugin's preference page, like this:

IPreferenceStore store = CorePluginActivator.getDefault().getPreferenceStore();
setPreferenceStore(store);

In this way the preference page will store the values in the Core plugin. The Core plugin can use the values without depending on the UI plugin.


You can also access preferences in other plug-ins using the preference service:

String pref = Platform.getPreferencesService().getString(
    "org.myplugin.preferences.page", "pref name",
    "default value if pref not found", null);


Prefs stores are found per plugin. This is one way to get a prefs store for the plugin whose activator class is ActivatorA.

IPreferenceStore store = ActivatorA.getDefault().getPreferenceStore();

If you want another plugin to refer to the same store, perhaps you could expose some api on ActivatorA for it to get there, e.g.

public IPreferenceStore getSharedPrefs() {
    return ActivatorA.getDefault().getPreferenceStore();
}

The second plugin would find the shared store by doing this

IPreferenceStore sharedPrefs = ActivatorA.getSharedPrefs();

Good luck.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号