I have a preferences page, where some radio buttons are controlled by a RadioGroupFieldEditor
.
setPreferenceStore(Activator.getDefault().getPreferenceStore());
....
addField(new RadioGroupFieldEditor("CHOICE",
"An example of a multiple-choice preference", 1,
new String[][] { { "&Choice 1", "choice1" },
{ "C&hoice 2", "choice2" } }, getFieldEditorParent()));
Question:
How can I retrieve the data (stored by the fieldEditor) from the PreferenceStore programmatically? How does the storage structure look like?