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.MultipleFileContentHandlerAncestor 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.PreviewPanelcreatePreview(File file)Creates the actual view.protected adams.gui.tools.previewbrowser.PreviewPanelcreatePreview(File[] files)Creates the actual view.adams.gui.tools.previewbrowser.PreviewPanelgetPreview(File[] files)Returns the preview for the specified files.protected abstract AbstractSpectrumReadergetReader(File file)Returns the reader to use.StringglobalInfo()Returns a string describing the object.adams.gui.tools.previewbrowser.PreviewPanelreusePreview(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:
globalInfoin interfaceadams.core.GlobalInfoSupporter- Specified by:
globalInfoin 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:
createPreviewin interfaceadams.gui.tools.previewbrowser.ContentHandler- Specified by:
createPreviewin 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:
reusePreviewin 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:
getPreviewin 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
-
-