listener.onFactoryArrival( arrivingFactory );
}
}
//Actual ADSComponent creation
ADSComponent component = generateADSComponent( componentType, arrivingFactory );
// Iterate over listeners for 'component created' event. Apply the changes applied by them.
if ( listenersByType != null )
{
for ( HubListener listener : listenersByType )
{
ADSComponent _comp = listener.onComponentCreation( component );
if ( _comp != null )
{
component = _comp;
}
}