Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can two eclipse plugin use the same preferences store?

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?

like image 787
St.Shadow Avatar asked Apr 22 '10 09:04

St.Shadow


3 Answers

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.

like image 82
Prakash G. R. Avatar answered Nov 15 '22 08:11

Prakash G. R.


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);
like image 20
mwuersch Avatar answered Nov 15 '22 07:11

mwuersch


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.

like image 41
bwinspur Avatar answered Nov 15 '22 09:11

bwinspur