Class AbstractScatterPlotHitDetector
- java.lang.Object
-
- adams.core.logging.LoggingObject
-
- adams.core.logging.CustomLoggingLevelObject
-
- adams.core.option.AbstractOptionHandler
-
- adams.gui.visualization.core.plot.AbstractHitDetector<H,P>
-
- adams.gui.visualization.core.plot.AbstractDistanceBasedHitDetector<int[],String>
-
- adams.gui.visualization.stats.paintlet.AbstractScatterPlotHitDetector
-
- All Implemented Interfaces:
CleanUpHandler,Destroyable,GlobalInfoSupporter,LoggingLevelHandler,LoggingSupporter,OptionHandler,SizeOfHandler,HitDetector<int[],String>,Serializable
- Direct Known Subclasses:
ScatterPlotCircleHitDetector
public abstract class AbstractScatterPlotHitDetector extends AbstractDistanceBasedHitDetector<int[],String>
Ancestor for scatter plot hit detectors.- Author:
- fracpete (fracpete at waikato dot ac dot nz)
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected AbstractScatterPlotPaintletm_Ownerthe owner of this detector.-
Fields inherited from class adams.gui.visualization.core.plot.AbstractDistanceBasedHitDetector
m_MinimumPixelDifference
-
Fields inherited from class adams.gui.visualization.core.plot.AbstractHitDetector
m_Debug, m_Enabled
-
Fields inherited from class adams.core.option.AbstractOptionHandler
m_OptionManager
-
Fields inherited from class adams.core.logging.LoggingObject
m_Logger, m_LoggingIsEnabled, m_LoggingLevel
-
-
Constructor Summary
Constructors Constructor Description AbstractScatterPlotHitDetector()Initializes the hit detector (constructor only for GOE) with no owner.AbstractScatterPlotHitDetector(AbstractScatterPlotPaintlet owner)Initializes the hit detector.
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description voidcleanUp()Cleans up data structures, frees up memory.protected int[]findClosestXs(double x, double wobble)Determines the indices of the X values that are closest to the provided x.AbstractScatterPlotPaintletgetOwner()Returns the owner.protected abstract int[]isHit(MouseEvent e)Checks for a hit.protected StringprocessHit(MouseEvent e, int[] hit)Performs the action when a hit is detected.voidsetOwner(AbstractScatterPlotPaintlet value)Sets the owner.-
Methods inherited from class adams.gui.visualization.core.plot.AbstractDistanceBasedHitDetector
defineOptions, distance, getDefaultMinimumPixelDifference, getMinimumPixelDifference, minimumPixelDifferenceTipText, setMinimumPixelDifference
-
Methods inherited from class adams.gui.visualization.core.plot.AbstractHitDetector
detect, getDebug, isEnabled, locate, setDebug, setEnabled
-
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
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface adams.core.logging.LoggingLevelHandler
getLoggingLevel
-
-
-
-
Field Detail
-
m_Owner
protected AbstractScatterPlotPaintlet m_Owner
the owner of this detector.
-
-
Constructor Detail
-
AbstractScatterPlotHitDetector
public AbstractScatterPlotHitDetector()
Initializes the hit detector (constructor only for GOE) with no owner.
-
AbstractScatterPlotHitDetector
public AbstractScatterPlotHitDetector(AbstractScatterPlotPaintlet owner)
Initializes the hit detector.- Parameters:
owner- the paintlet that uses this detector
-
-
Method Detail
-
setOwner
public void setOwner(AbstractScatterPlotPaintlet value)
Sets the owner.- Parameters:
value- the owning panel
-
getOwner
public AbstractScatterPlotPaintlet getOwner()
Returns the owner.- Returns:
- the owning paintlet
-
findClosestXs
protected int[] findClosestXs(double x, double wobble)Determines the indices of the X values that are closest to the provided x.- Parameters:
x- the X value to look forwobble- the "fuzziness"- Returns:
- the indices
-
isHit
protected abstract int[] isHit(MouseEvent e)
Checks for a hit.- Specified by:
isHitin classAbstractHitDetector<int[],String>- Parameters:
e- the MouseEvent (for coordinates)- Returns:
- the associated object with the hit, otherwise null
-
processHit
protected String processHit(MouseEvent e, int[] hit)
Performs the action when a hit is detected.- Specified by:
processHitin classAbstractHitDetector<int[],String>- Parameters:
e- the MouseEvent (for coordinates)hit- the object that got determined by the hit- Returns:
- the generated appendix for the tiptext
-
cleanUp
public void cleanUp()
Cleans up data structures, frees up memory.- Specified by:
cleanUpin interfaceCleanUpHandler- Overrides:
cleanUpin classAbstractHitDetector<int[],String>
-
-