// find a library creation helper
if(runWizard) {
logger.debug("running wizard to create library");
ILibraryUI ui = (ILibraryUI)ServiceUtils.getService(bundleContext, ILibraryUI.class.getName());
logger.debug("ui: " + ui);
logger.debug("setting up");
ui.setup(PlatformUI.getWorkbench().getActiveWorkbenchWindow());
logger.debug("running UI helper");
library = ui.run();
}
else {
logger.debug("running helper to create library");
ILibraryHelper helper = (ILibraryHelper)ServiceUtils.getService(bundleContext, ILibraryHelper.class.getName());