moduleDefinition.setExecutionContext(CoreConstants.EXECUTION_CONTEXT_STARTUP);
applicationContext.getPluginRegistry().addModuleDefinition(moduleDefinition);
applicationContext.configureContext(CoreConstants.EXECUTION_CONTEXT_STARTUP);
// S'especifica directament com a listener perquè la classe Application no està gestionada per Guice
IEventNotificationService eventNotificationService = (IEventNotificationService)applicationContext.getRegisteredComponent(IEventNotificationService.class);
eventNotificationService.addListener(IWorkspaceEventListener.class, this);
initialized = true;
}