Class AbstractResultsHandler
- java.lang.Object
-
- adams.core.logging.LoggingObject
-
- adams.core.logging.CustomLoggingLevelObject
-
- adams.core.option.AbstractOptionHandler
-
- adams.gui.tools.wekamultiexperimenter.experiment.AbstractResultsHandler
-
- All Implemented Interfaces:
adams.core.Destroyable
,adams.core.GlobalInfoSupporter
,adams.core.logging.LoggingLevelHandler
,adams.core.logging.LoggingSupporter
,adams.core.option.OptionHandler
,adams.core.SizeOfHandler
,Serializable
- Direct Known Subclasses:
FileResultsHandler
public abstract class AbstractResultsHandler extends adams.core.option.AbstractOptionHandler
Ancestor for classes that store the results from an experiment run.- Version:
- $Revision$
- Author:
- FracPete (fracpete at waikato dot ac dot nz)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AbstractResultsHandler()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract adams.data.spreadsheet.SpreadSheet
read()
Loads the results (if possible).abstract String
write(adams.data.spreadsheet.SpreadSheet results)
Stores the results.-
Methods inherited from class adams.core.option.AbstractOptionHandler
cleanUpOptions, defineOptions, destroy, finishInit, getDefaultLoggingLevel, getOptionManager, globalInfo, initialize, loggingLevelTipText, newOptionManager, reset, setLoggingLevel, toCommandLine, toString
-
Methods inherited from class adams.core.logging.LoggingObject
configureLogger, getLogger, getLoggingLevel, initializeLogging, isLoggingEnabled, sizeOf
-
-
-
-
Method Detail
-
read
public abstract adams.data.spreadsheet.SpreadSheet read()
Loads the results (if possible).- Returns:
- the results, null if failed to obtain (or not available)
-
write
public abstract String write(adams.data.spreadsheet.SpreadSheet results)
Stores the results.- Parameters:
results
- the results to store- Returns:
- null if successful, otherwise error message
-
-