"net.sf.springofeclipse.imports");
IExtension[] extensions = ep.getExtensions();
for (int i = 0; i < extensions.length; i++) {
IExtension extension = extensions[i];
IConfigurationElement[] elements = extension
.getConfigurationElements();
for (int j = 0; j < elements.length; j++) {
IConfigurationElement configurationElement = elements[j];
String contextIdTemp = configurationElement
.getAttribute("contextId");
if (contextId.equals(contextIdTemp)) {
if (log.isDebugEnabled()) {
log.debug("loading imports for context: [id="
+ contextId + "]");
}
ImportConfiguration configuration = new ImportConfiguration();
Bundle bundle = Platform.getBundle(extension
.getNamespaceIdentifier());
configuration.classLoader = new BundleClassLoader(bundle);
String readerClassName = configurationElement