/**
* Sets the text strings to those found in Eclipse prefs.
*/
private void initializeValues() {
IPreferencesService serv = Platform.getPreferencesService();
mEprText.setText(serv.getString(Activator.PLUGIN_ID, Activator.URL_KEY,
REGISTRY_DEFAULT, null));
mFileText.setText(serv.getString(Activator.PLUGIN_ID,
Activator.REG_FILE_KEY, REGISTRY_LOCAL_DEFAULT, null));
mUseFileCheckBox.setSelection(serv.getBoolean(Activator.PLUGIN_ID,
Activator.USE_REG_FILE_KEY, USE_REGISTRY_LOCAL_DEFAULT, null));
mUseURLCheckBox.setSelection(serv.getBoolean(Activator.PLUGIN_ID,
Activator.USE_REG_URL_KEY, USE_REGISTRY_URL_DEFAULT, null));
}