Package org.data2semantics.platform.reporting

Examples of org.data2semantics.platform.reporting.HTMLReporter


   
    Orchestrator platformOrchestrator = new Orchestrator(workflow, localExecutionProfile, resourceSpace);
   
    platformOrchestrator.orchestrate();
   
    HTMLReporter reporter = new HTMLReporter(workflow, new File("output"));
    reporter.report();
  }
View Full Code Here


   
    ResourceSpace rp = new ResourceSpace();
   
   
    List<Reporter> reporters = Arrays.asList(
          new HTMLReporter(workflow, new File(output, "report/")),
          new CSVReporter(workflow, new File(output, "csv/")),
          new PROVReporter(workflow, new File(output, "prov/"))
        );
   
      Orchestrator orchestrator = new Orchestrator(workflow,  executionProfile, rp, reporters);
View Full Code Here

TOP

Related Classes of org.data2semantics.platform.reporting.HTMLReporter

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.