Package pulse.io.export
Class RawDataExporter
- java.lang.Object
-
- pulse.io.export.RawDataExporter
-
- All Implemented Interfaces:
Exporter<ExperimentalData>
,Reflexive
public class RawDataExporter extends Object implements Exporter<ExperimentalData>
A wrapper singleton class that is made specifically to handle export requests ofExperimentalData
. Does exactly the same as theCurveExporter
, except that its target is specifically set toExperimentalData
.- See Also:
ExportDialog
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static RawDataExporter
getInstance()
Retrieves the single static instance of this classExtension[]
getSupportedExtensions()
Currentlyhtml
andcsv
extensions are supported.void
printToStream(ExperimentalData target, FileOutputStream fos, Extension extension)
Invokes theprintToStream(...)
method of theHeatingCurveExporter
instance.Class<ExperimentalData>
target()
Defines the class, instances of which can be fed into the exporter to produce a result.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface pulse.io.export.Exporter
askToExport, export
-
-
-
-
Method Detail
-
getInstance
public static RawDataExporter getInstance()
Retrieves the single static instance of this class- Returns:
- an instance of
RawDataExporter
.
-
target
public Class<ExperimentalData> 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 interfaceExporter<ExperimentalData>
- Returns:
ExperimentalData.class
-
printToStream
public void printToStream(ExperimentalData target, FileOutputStream fos, Extension extension)
Invokes theprintToStream(...)
method of theHeatingCurveExporter
instance.- Specified by:
printToStream
in interfaceExporter<ExperimentalData>
- Parameters:
target
- the exported targetfos
- a FileOutputStream created by theexport
methodextension
- 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)
-
getSupportedExtensions
public Extension[] getSupportedExtensions()
Currentlyhtml
andcsv
extensions are supported.- Specified by:
getSupportedExtensions
in interfaceExporter<ExperimentalData>
- Returns:
- an array with
Extension
type objects.
-
-