I have the following problem. I have a Preferences Page that stores preferences using the Store mechanism. Now, these preferences must be accessed from a plugin that does not include org.eclipse.ui, which means that the store mechanism is not available and I can only use the Runtime preference mechanism.
How can I use the Preference Page to create a runtime preference?
I have the following problem:
- When using preference pages, the class used is
Activator.getDefault().getPreferenceStore()
- When using runtime plugins, the class is
new InstanceScope().getNode("<plugin id>")
;
How do I synchronize both?