Class AbstractOutputGenerator
- java.lang.Object
-
- adams.core.logging.LoggingObject
-
- adams.core.logging.CustomLoggingLevelObject
-
- adams.core.option.AbstractOptionHandler
-
- adams.gui.tools.wekainvestigator.output.AbstractOutputGenerator<ResultItem>
-
- adams.gui.tools.wekainvestigator.tab.classifytab.output.AbstractOutputGenerator
-
- 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:
AbstractOutputGeneratorWithSeparateFoldsSupport
,ClassifierErrors
,GraphSource
,LegacyGraphVisualizer
,LegacyTreeVisualizer
,ModelOutput
,Predictions
,Predictions
,RunInformation
,SamplePlot
,SourceCode
,Statistics
,TextStatistics
,TreeGraphML
,TreeVisualizer
public abstract class AbstractOutputGenerator extends AbstractOutputGenerator<ResultItem>
Ancestor for output generators using the data from the per-fold pane.- Author:
- FracPete (fracpete at waikato dot ac dot nz)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AbstractOutputGenerator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
addPage(adams.gui.core.MultiPagePane multiPage, String title, JComponent comp, int fold)
Adds a page for the confusion matrix.protected adams.gui.core.MultiPagePane
newMultiPagePane(ResultItem item)
Generates a new MultiPagePane instance.-
Methods inherited from class adams.gui.tools.wekainvestigator.output.AbstractOutputGenerator
addTab, canGenerateOutput, createOutput, generateOutput, getTitle
-
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
-
newMultiPagePane
protected adams.gui.core.MultiPagePane newMultiPagePane(ResultItem item)
Generates a new MultiPagePane instance.- Returns:
- the instance
-
addPage
protected void addPage(adams.gui.core.MultiPagePane multiPage, String title, JComponent comp, int fold)
Adds a page for the confusion matrix.- Parameters:
multiPage
- the multi-page to add totitle
- the title to usecomp
- the component to add as pagefold
- the fold, -1 for non-fold related page, 0 for full, 1-* for fold indices
-
-