WidgetUtils.addToGridBag(new JLabel("" + numThreads), panel, 1, row);
}
}
row++;
StorageProvider storageProvider = _configuration.getStorageProvider();
WidgetUtils.addToGridBag(new JLabel("Storage provider type:"), panel, 0, row);
WidgetUtils.addToGridBag(new JLabel(storageProvider.getClass().getSimpleName()), panel, 1, row);
WidgetUtils
.addToGridBag(
new HelpIcon(
"The storage provider is used for staging data during and after analysis, typically to store the results on disk in stead of holding everything in memory."),
panel, 2, row);