Class ResultTableExporter

  • All Implemented Interfaces:
    Exporter<ResultTable>, Reflexive

    public class ResultTableExporter
    extends Object
    implements Exporter<ResultTable>
    A singleton Exporter which can process the results table. Invoked when the user selects to export the calculation results. The output is a summary file in either csv or html format.
    • Method Detail

      • printToStream

        public void printToStream​(ResultTable table,
                                  FileOutputStream fos,
                                  Extension extension)
        This will create a single file with the output. Depending on whether the results table contain average results (with the respective error margins) or only individual results, the file might consist of one or two tables, first listing the average results and then finding what individual results have been used to calculate the latter. In the html format, the errors are given in the same table cells as the values and are delimited by a plus-minus sign. The html table gives a pretty representation of the results whereas the csv, while difficult to read by a human, can be interpreted by most external tools such as LaTeX pgfplots, gnuplot, or excel.
        Specified by:
        printToStream in interface Exporter<ResultTable>
        Parameters:
        table - the exported target
        fos - a FileOutputStream created by the export method
        extension - an extension of the file saved on disk
        See Also:
        Exporter.export(T,java.io.File,pulse.io.export.Extension), Exporter.askToExport(T,javax.swing.JFrame,java.lang.String,java.io.File)
      • getInstance

        public static ResultTableExporter getInstance()
        Gets the single instance of this class.
        Returns:
        the single instance of ResultTableExporter.
      • target

        public Class<ResultTable> target()
        Description copied from interface: Exporter
        Defines the class, instances of which can be fed into the exporter to produce a result.
        Specified by:
        target in interface Exporter<ResultTable>
        Returns:
        ResultTable.class.