* Create the tab folder pages. There's one tab per performance machine.
* The list of these machines is got from the DB_Results contants.
*/
void createTabs() {
if (this.componentResultsElement == null) return;
PerformanceResultsElement performanceResultsElement = (PerformanceResultsElement) this.componentResultsElement.getParent(null);
String[] configNames = performanceResultsElement.getConfigs();
String[] configDescriptions = performanceResultsElement.getConfigDescriptions();
int length = configNames.length;
this.tabs = new ConfigTab[length];
for (int i=0; i<length; i++) {
this.tabs[i] = new ConfigTab(configNames[i], configDescriptions[i]);
}