String keyToFind = "multiple_instances_components." + component + "(" + instanceIndex + ")";
List<?> list = testbedConfig.configurationsAt(keyToFind);
if (!list.isEmpty()) {
Class<?> c = ComponentsLoader.getInstance().getComponentImplementationClass(component);
if (c == null) {
throw new QTasteException("The class implementing the component " + component + " is not registered in testapi_implementation.import(s) selected in the Testbed configuration.");
}
Component componentImpl = createComponentInstance(instanceId, c);
map.put(key, componentImpl);
return componentImpl;
} else {