Package org.eclipse.test.performance.ui

Examples of org.eclipse.test.performance.ui.GenerateResults


      IRunnableWithProgress runnable = new IRunnableWithProgress() {

        public void run(IProgressMonitor monitor) throws InvocationTargetException, InterruptedException {
          try {
            monitor.beginTask("Generate performance results", 10000);
            GenerateResults generation = new GenerateResults(BuildsView.this.results.getPerformanceResults(),
                buildName,
                baselineName,
                fingerprints,
                BuildsView.this.dataDir,
                genDir);
            GenerateAction.this.status = generation.run(monitor);
            monitor.done();
          } catch (Exception e) {
            e.printStackTrace();
          }
        }
View Full Code Here

TOP

Related Classes of org.eclipse.test.performance.ui.GenerateResults

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.