Interface ColorSelectionShapePainter
-
- All Superinterfaces:
Destroyable
,OptionHandler
,SelectionShapePainter
- All Known Implementing Classes:
PolygonPainter
,RectanglePainter
public interface ColorSelectionShapePainter extends SelectionShapePainter
Interface for selection shape painters that use a single color.- Author:
- FracPete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
colorTipText()
Returns the tip text for this property.Color
getColor()
Returns the color to use.void
setColor(Color value)
Sets the color to use.-
Methods inherited from interface adams.core.Destroyable
destroy
-
Methods inherited from interface adams.core.option.OptionHandler
cleanUpOptions, defineOptions, getOptionManager, toCommandLine
-
Methods inherited from interface adams.gui.visualization.image.selectionshape.SelectionShapePainter
canAddTracePoint, paintSelectionShape
-
-
-
-
Method Detail
-
setColor
void setColor(Color value)
Sets the color to use.- Parameters:
value
- the color
-
getColor
Color getColor()
Returns the color to use.- Returns:
- the color
-
colorTipText
String colorTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
-