I'm working on an Eclipse plugin that has a preference page, the performOk() method of which alters preferences of a few other plugins to accommodate the changes. Works nicely so far.
However, if the user changes the prefs file of my plugin manually or updates the plugin, he has to go to the preferences page and press "OK" manually, otherwise the other plugin's preferences will be out of date.
I would like to avoid this problem by adjusting the other plugins' preferences on each start of Eclipse. I've made my plugin class implement the IStartup interface and its earlyStartup() method to alter the preferences there, but I have two problems with that:
I need to read a setting from my own plugin before altering the preferences of the other ones, but the
getPreferenceStore()method does not work within theearlyStartup()method. I was able to work around this by implementingearlyStartup()empty and doing what I want in the plugin'sstart()method, is this behaviour reliable?I get Invalid thread access exceptions when actually altering the preferences in the
start()method. I've read thatstart()is executed by its own job, can jobs change preferences?
If there is an alternative way to achieve what I want, I'd naturally also like to know.