{
for (IConfigurationElement c : e.getConfigurationElements())
{
if (alias.equals(c.getAttribute("alias")))
{
IRepositoryProvider provider = (IRepositoryProvider) c.createExecutableExtension("class");
IRepositoryType type = ExtensionUtils.toRepositoryType(e, c);
return new EclipseRepositoryProviderWrapper(provider, type);
}
}
}