Package adams.gui.tools.previewbrowser
Class AbstractSpectrumHandler
- java.lang.Object
-
- adams.core.logging.LoggingObject
-
- adams.core.logging.CustomLoggingLevelObject
-
- adams.core.option.AbstractOptionHandler
-
- adams.gui.tools.previewbrowser.AbstractContentHandler
-
- adams.gui.tools.previewbrowser.AbstractSpectrumHandler
-
- All Implemented Interfaces:
adams.core.Destroyable
,adams.core.GlobalInfoSupporter
,adams.core.logging.LoggingLevelHandler
,adams.core.logging.LoggingSupporter
,adams.core.option.OptionHandler
,adams.core.SizeOfHandler
,adams.gui.tools.previewbrowser.ContentHandler
,adams.gui.tools.previewbrowser.MultipleFileContentHandler
,Serializable
- Direct Known Subclasses:
ASCIIXYSpectrumHandler
,ASCSpectrumHandler
,CALSpectrumHandler
,CMLSpectrumHandler
,DPTSpectrumHandler
,JCampDX2SpectrumHandler
,JCampDXSpectrumHandler
,JsonSpectrumHandler
,MPSSpectrumHandler
,NIRSpectrumHandler
,OpusSpectrumExtHandler
,OpusSpectrumHandler
,RelabSpectrumHandler
,SimpleSpectrumHandler
,SPASpectrumHandler
,SPCSpectrumHandler
,SpecLibSpectrumHandler
public abstract class AbstractSpectrumHandler extends adams.gui.tools.previewbrowser.AbstractContentHandler implements adams.gui.tools.previewbrowser.MultipleFileContentHandler
Ancestor for spectrum handlers.- Author:
- fracpete (fracpete at waikato dot ac dot nz)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AbstractSpectrumHandler()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description adams.gui.tools.previewbrowser.PreviewPanel
createPreview(File file)
Creates the actual view.protected adams.gui.tools.previewbrowser.PreviewPanel
createPreview(File[] files)
Creates the actual view.adams.gui.tools.previewbrowser.PreviewPanel
getPreview(File[] files)
Returns the preview for the specified files.protected abstract AbstractSpectrumReader
getReader(File file)
Returns the reader to use.String
globalInfo()
Returns a string describing the object.adams.gui.tools.previewbrowser.PreviewPanel
reusePreview(File[] files, adams.gui.tools.previewbrowser.PreviewPanel previewPanel)
Returns the preview for the specified files.-
Methods inherited from class adams.gui.tools.previewbrowser.AbstractContentHandler
checkFile, getHandlers, getHandlersForFile, getHandlersForFile, getPreview, getRelation, hasHandler, hasHandler, reusePreview
-
Methods inherited from class adams.core.option.AbstractOptionHandler
cleanUpOptions, defineOptions, destroy, finishInit, getDefaultLoggingLevel, getOptionManager, initialize, loggingLevelTipText, newOptionManager, reset, setLoggingLevel, toCommandLine, toString
-
Methods inherited from class adams.core.logging.LoggingObject
configureLogger, getLogger, getLoggingLevel, initializeLogging, isLoggingEnabled, sizeOf
-
-
-
-
Method Detail
-
globalInfo
public String globalInfo()
Returns a string describing the object.- Specified by:
globalInfo
in interfaceadams.core.GlobalInfoSupporter
- Specified by:
globalInfo
in classadams.core.option.AbstractOptionHandler
- Returns:
- a description suitable for displaying in the gui
-
getReader
protected abstract AbstractSpectrumReader getReader(File file)
Returns the reader to use.- Parameters:
file
- the file to read from- Returns:
- the reader
-
createPreview
public adams.gui.tools.previewbrowser.PreviewPanel createPreview(File file)
Creates the actual view.- Specified by:
createPreview
in interfaceadams.gui.tools.previewbrowser.ContentHandler
- Specified by:
createPreview
in classadams.gui.tools.previewbrowser.AbstractContentHandler
- Parameters:
file
- the file to create the view for- Returns:
- the view
-
createPreview
protected adams.gui.tools.previewbrowser.PreviewPanel createPreview(File[] files)
Creates the actual view.- Parameters:
files
- the files to create the view for- Returns:
- the view
-
reusePreview
public adams.gui.tools.previewbrowser.PreviewPanel reusePreview(File[] files, adams.gui.tools.previewbrowser.PreviewPanel previewPanel)
Returns the preview for the specified files.
Default implementation just creates a new preview.- Specified by:
reusePreview
in interfaceadams.gui.tools.previewbrowser.MultipleFileContentHandler
- Parameters:
files
- the files to create the view forpreviewPanel
- the preview panel to resuse- Returns:
- the preview, NoPreviewAvailablePanel in case of an error
- See Also:
NoPreviewAvailablePanel
-
getPreview
public adams.gui.tools.previewbrowser.PreviewPanel getPreview(File[] files)
Returns the preview for the specified files.- Specified by:
getPreview
in interfaceadams.gui.tools.previewbrowser.MultipleFileContentHandler
- Parameters:
files
- the files to create the view for- Returns:
- the preview, NoPreviewAvailablePanel in case of an error
- See Also:
NoPreviewAvailablePanel
-
-