Package pulse.io.export
Class TextLogPaneExporter
- java.lang.Object
-
- pulse.io.export.TextLogPaneExporter
-
- All Implemented Interfaces:
Exporter<TextLogPane>
,Reflexive
public class TextLogPaneExporter extends Object implements Exporter<TextLogPane>
Similar to aLogExporter
, except that it works only on the contents of aLogPane
currently being displayed to the user.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TextLogPaneExporter
getInstance()
Gets the only static instance of this subclass.Extension[]
getSupportedExtensions()
Only html is currently supported by this exporter.void
printToStream(TextLogPane pane, FileOutputStream fos, Extension extension)
This will write all contents ofpane
, which are accessed using anHTMLEditorKit
directly tofos
.Class<TextLogPane>
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
-
printToStream
public void printToStream(TextLogPane pane, FileOutputStream fos, Extension extension)
This will write all contents ofpane
, which are accessed using anHTMLEditorKit
directly tofos
. Theextension
argument is ignored. After exporting, the stream is explicitly closed.- Specified by:
printToStream
in interfaceExporter<TextLogPane>
- Parameters:
pane
- 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)
-
getInstance
public static TextLogPaneExporter getInstance()
Gets the only static instance of this subclass.- Returns:
- an instance of
LogPaneExporter
.
-
target
public Class<TextLogPane> 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<TextLogPane>
- Returns:
LogPane.class
.
-
getSupportedExtensions
public Extension[] getSupportedExtensions()
Only html is currently supported by this exporter.- Specified by:
getSupportedExtensions
in interfaceExporter<TextLogPane>
- Returns:
- an array with
Extension
type objects.
-
-