Package org.eclipse.test.internal.performance.results.db

Examples of org.eclipse.test.internal.performance.results.db.ComponentResults


    final File outputDir = new File(this.rootDir, configName);
    outputDir.mkdir();
    Iterator components = performanceResults.getResults();
    while (components.hasNext()) {
      if (printStream != null) printStream.print(".");
      final ComponentResults componentResults = (ComponentResults) components.next();

      // Manage monitor
      int percentage = (int) ((progress++ / total) * 100);
      subMonitor.setTaskName("Generating data for "+configBox+": "+percentage+"%");
      subMonitor.subTask("Component "+componentResults.getName()+"...");

      Display display = Display.getDefault();
         display.syncExec(
        new Runnable() {
          public void run(){
View Full Code Here

TOP

Related Classes of org.eclipse.test.internal.performance.results.db.ComponentResults

Copyright © 2018 www.massapicom. 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.