Class AbstractThreeWayDataOverlay
- java.lang.Object
-
- adams.core.logging.LoggingObject
-
- adams.core.logging.CustomLoggingLevelObject
-
- adams.core.option.AbstractOptionHandler
-
- adams.gui.visualization.image.AbstractImageOverlay
-
- adams.gui.visualization.threewaydata.heatmapviewer.overlay.AbstractThreeWayDataOverlay
-
- All Implemented Interfaces:
adams.core.CleanUpHandler
,adams.core.Destroyable
,adams.core.GlobalInfoSupporter
,adams.core.logging.LoggingLevelHandler
,adams.core.logging.LoggingSupporter
,adams.core.option.OptionHandler
,adams.core.ShallowCopySupporter<adams.gui.visualization.image.AbstractImageOverlay>
,adams.core.SizeOfHandler
,adams.gui.visualization.image.ImageOverlay
,Serializable
- Direct Known Subclasses:
AbstractPositionableThreeWayDataOverlay
,Null
public abstract class AbstractThreeWayDataOverlay extends adams.gui.visualization.image.AbstractImageOverlay
Ancestor for 3-way data image overlays.- Author:
- fracpete (fracpete at waikato dot ac dot nz)
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected ThreeWayDataHeatmapPanel
m_DataPanel
the heatmap panel.
-
Constructor Summary
Constructors Constructor Description AbstractThreeWayDataOverlay()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ThreeWayDataHeatmapPanel
getDataPanel()
Returns the data panel this overlay is for.void
paintOverlay(adams.gui.visualization.image.ImagePanel.PaintPanel panel, Graphics g)
Paints the overlay over the image.void
setDataPanel(ThreeWayDataHeatmapPanel value)
Sets the data panel this overlay is for.-
Methods inherited from class adams.gui.visualization.image.AbstractImageOverlay
cleanUp, defineOptions, doImageChanged, doPaintOverlay, enabledTipText, imageChanged, isEnabled, overlayAdded, overlayRemoved, setEnabled, shallowCopy, shallowCopy
-
Methods inherited from class adams.core.option.AbstractOptionHandler
cleanUpOptions, 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
-
-
-
-
Field Detail
-
m_DataPanel
protected ThreeWayDataHeatmapPanel m_DataPanel
the heatmap panel.
-
-
Method Detail
-
setDataPanel
public void setDataPanel(ThreeWayDataHeatmapPanel value)
Sets the data panel this overlay is for.- Parameters:
value
- the panel
-
getDataPanel
public ThreeWayDataHeatmapPanel getDataPanel()
Returns the data panel this overlay is for.- Returns:
- the panel
-
paintOverlay
public void paintOverlay(adams.gui.visualization.image.ImagePanel.PaintPanel panel, Graphics g)
Paints the overlay over the image.- Specified by:
paintOverlay
in interfaceadams.gui.visualization.image.ImageOverlay
- Overrides:
paintOverlay
in classadams.gui.visualization.image.AbstractImageOverlay
- Parameters:
panel
- the panel this overlay is forg
- the graphics context
-
-