/* Pass Service through Initializers */
IExtensionRegistry reg = Platform.getExtensionRegistry();
IConfigurationElement elements[] = reg.getConfigurationElementsFor(PREFERENCES_INITIALIZER_EXTENSION_POINT);
for (IConfigurationElement element : elements) {
try {
IPreferencesInitializer initializer = (IPreferencesInitializer) element.createExecutableExtension("class"); //$NON-NLS-1$
initializer.initialize(fDefaultScope);
} catch (CoreException e) {
Activator.getDefault().getLog().log(e.getStatus());
}
}
}