Package pulse.io.export
Class LogExporter
- java.lang.Object
-
- pulse.io.export.LogExporter
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static LogExporter
getInstance()
Gets the only static instance of this subclass.Extension[]
getSupportedExtensions()
Only html is currently supported by this exporter.void
printToStream(Log log, FileOutputStream fos, Extension extension)
Prints all the data contained in thisLog
usingfos
.Class<Log>
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 LogExporter getInstance()
Gets the only static instance of this subclass.- Returns:
- an instance of
LogExporter
.
-
printToStream
public void printToStream(Log log, FileOutputStream fos, Extension extension)
Prints all the data contained in thisLog
usingfos
. By default, this will output all data in anhtml
format. Note this implementation ignores theextension
parameter. After execution, the stream is explicitly closed.- Specified by:
printToStream
in interfaceExporter<Log>
- Parameters:
log
- a log to be exportedfos
- an output streamextension
- the desired extension- See Also:
Exporter.export(T,java.io.File,pulse.io.export.Extension)
,Exporter.askToExport(T,javax.swing.JFrame,java.lang.String,java.io.File)
-
target
public Class<Log> target()
Description copied from interface:Exporter
Defines the class, instances of which can be fed into the exporter to produce a result.
-
getSupportedExtensions
public Extension[] getSupportedExtensions()
Only html is currently supported by this exporter.- Specified by:
getSupportedExtensions
in interfaceExporter<Log>
- Returns:
- an array with
Extension
type objects.
-
-