I am using Eclipse 3.7 (Indigo) for an Eclipse plug-in. This plugin will be packaged via the product file to be a standalone application. The installation will be a multi-user installation such as described in Scenario 2 of this link. So there will be one install area shared by many users.
Based on this answer, I figured that I can set the osgi.configuration.area
to a user.home
location so that each user will have their own settings. I understand how to access the preferences via code but now I would like to be able to access these via the Preferences dialog under Window in Eclipse. For all the examples I have seen, the Preferences dialog only caters to Instance scope preferences. Is there any way for me to add Configuration scope preferences to the preferencesPage.
I have also viewed this answer on stackoverflow but again this caters to Instance scope, hence I posted a separate question.