for (IConfigurationElement config : enablerConfigs) {
String enablerId = config.getAttribute(ATTR_ENABLER_ID);
String[] configuratorIds = split(config.getAttribute(ATTR_CONFIGURATOR_IDS));
String label = config.getAttribute(ATTR_LABEL);
String description = config.getAttribute(ATTR_DESCRIPTION);
enablers.add(new ConfiguratorEnabler(enablerId, label, configuratorIds, description));
}
return enablers;
}