Examples of PerformanceResultsElement


Examples of org.eclipse.test.internal.performance.results.model.PerformanceResultsElement

* 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]);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.