addComponentPlugin(debug, instance_, ecplugins.getComponentPlugins(), exocontainer);
}
// check if component implement the ComponentLifecycle
if (instance_ instanceof ComponentLifecycle)
{
ComponentLifecycle lc = (ComponentLifecycle)instance_;
lc.initComponent(exocontainer);
}
}
catch (Exception ex)
{
String msg = "Cannot instantiate component " + getComponentImplementation();