Revision: 505 http://cishell.svn.sourceforge.net/cishell/?rev=505&view=rev Author: mwlinnem Date: 2007-08-30 13:39:55 -0700 (Thu, 30 Aug 2007) Log Message: ----------- Added report that simply outputs the unmodified converter graph. Added Paths: ----------- trunk/testing/org.cishell.testing.convertertester.core.new/src/org/cishell/testing/convertertester/core/tester2/reportgen/convgraph/GraphReportGenerator.java Added: trunk/testing/org.cishell.testing.convertertester.core.new/src/org/cishell/testing/convertertester/core/tester2/reportgen/convgraph/GraphReportGenerator.java =================================================================== --- trunk/testing/org.cishell.testing.convertertester.core.new/src/org/cishell/testing/convertertester/core/tester2/reportgen/convgraph/GraphReportGenerator.java (rev 0) +++ trunk/testing/org.cishell.testing.convertertester.core.new/src/org/cishell/testing/convertertester/core/tester2/reportgen/convgraph/GraphReportGenerator.java 2007-08-30 20:39:55 UTC (rev 505) @@ -0,0 +1,29 @@ +package org.cishell.testing.convertertester.core.tester2.reportgen.convgraph; + +import java.io.File; + +import org.cishell.testing.convertertester.core.tester2.reportgen.ReportGenerator; +import org.cishell.testing.convertertester.core.tester2.reportgen.results.AllConvsResult; +import org.cishell.testing.convertertester.core.tester2.reportgen.results.AllTestsResult; +import org.osgi.service.log.LogService; + +public class GraphReportGenerator implements ReportGenerator { + + private LogService log; + private File nwbConvGraph; + + public GraphReportGenerator(LogService log) { + this.log = log; + } + + public void generateReport(AllTestsResult atr, + AllConvsResult acr, + File nwbConvGraph) { + this.nwbConvGraph = nwbConvGraph; + } + + + public File getGraphReport() { + return this.nwbConvGraph; + } +} This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |