Package export.wavExport
Class WavDetExportManager
java.lang.Object
export.wavExport.WavDetExportManager
- All Implemented Interfaces:
PamDataUnitExporter
Writes data units and/or ordered raw data to a wav file. Has functions to
handle .wav file writing based on overlay marks and detection groups with
functions to make decisions based on what type of data unit is selected and
whether raw data is available.
There are two primary use cases;
1) Order raw data from an overlay mark and save as a wav file
2) Save a list of data units to wav files - either a single file with zero
pads, a concatenated file or separate files.
- Author:
- Jamie Macaulay
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
close()
Close the exporter.boolean
exportData
(File fileName, List<PamDataUnit> dataUnits, boolean append) Export the data to a folder.Get the extension for the output file typeGet the ikonli icon string for the exporter.getName()
Get the name of the exporter.javafx.scene.layout.Pane
An optional JavaFX pane that displays additional options for the user.An optional panel that displays additional options for the user.boolean
hasCompatibleUnits
(Class dataUnitType) Check whether a particular data unit class is compatibleboolean
Check whether and exporter needs a new filevoid
Called whenever a new export run is prepared.
-
Constructor Details
-
WavDetExportManager
public WavDetExportManager()
-
-
Method Details
-
hasCompatibleUnits
Description copied from interface:PamDataUnitExporter
Check whether a particular data unit class is compatible- Specified by:
hasCompatibleUnits
in interfacePamDataUnitExporter
- Parameters:
dataUnitType
- - the data unit type to test.- Returns:
- true if it can be exported.
-
exportData
Description copied from interface:PamDataUnitExporter
Export the data to a folder.- Specified by:
exportData
in interfacePamDataUnitExporter
- Parameters:
fileName
- - the file to export todataUnits
- - the data units to export.- Returns:
- true if exported successfully.
-
getFileExtension
Description copied from interface:PamDataUnitExporter
Get the extension for the output file type- Specified by:
getFileExtension
in interfacePamDataUnitExporter
- Returns:
- the extension for the file type e.g. "mat"
-
getIconString
Description copied from interface:PamDataUnitExporter
Get the ikonli icon string for the exporter.- Specified by:
getIconString
in interfacePamDataUnitExporter
- Returns:
- the ikon string.
-
getName
Description copied from interface:PamDataUnitExporter
Get the name of the exporter.- Specified by:
getName
in interfacePamDataUnitExporter
- Returns:
- the name of the exporter.
-
close
public void close()Description copied from interface:PamDataUnitExporter
Close the exporter.- Specified by:
close
in interfacePamDataUnitExporter
-
isNeedsNewFile
public boolean isNeedsNewFile()Description copied from interface:PamDataUnitExporter
Check whether and exporter needs a new file- Specified by:
isNeedsNewFile
in interfacePamDataUnitExporter
- Returns:
- true if we need a new file.
-
getOptionsPanel
Description copied from interface:PamDataUnitExporter
An optional panel that displays additional options for the user.- Specified by:
getOptionsPanel
in interfacePamDataUnitExporter
- Returns:
- additional options panel - can be null.
-
getOptionsPane
public javafx.scene.layout.Pane getOptionsPane()Description copied from interface:PamDataUnitExporter
An optional JavaFX pane that displays additional options for the user.- Specified by:
getOptionsPane
in interfacePamDataUnitExporter
- Returns:
- pane with additonal options - can be null.
-
prepareExport
public void prepareExport()Description copied from interface:PamDataUnitExporter
Called whenever a new export run is prepared.- Specified by:
prepareExport
in interfacePamDataUnitExporter
-