Interface SelectionProcessorWithLabelSupport
-
- All Superinterfaces:
Destroyable
,EventListener
,ImagePanelSelectionListener
,OptionHandler
,SelectionProcessor
,ShallowCopySupporter<SelectionProcessor>
- All Known Implementing Classes:
SelectObjects
public interface SelectionProcessorWithLabelSupport extends SelectionProcessor
Interface for selection processors that support labels.- Author:
- FracPete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getLabel()
Returns the label to use for the objects.String
getLabelSuffix()
Returns the suffix to use for the label.String
labelSuffixTipText()
Returns the tip text for this property.String
labelTipText()
Returns the tip text for this property.void
setLabel(String value)
Sets the label to use for the objects.void
setLabelSuffix(String value)
Sets the suffix to use for the label.-
Methods inherited from interface adams.core.Destroyable
destroy
-
Methods inherited from interface adams.gui.event.ImagePanelSelectionListener
imageChanged, selected
-
Methods inherited from interface adams.core.option.OptionHandler
cleanUpOptions, defineOptions, getOptionManager, toCommandLine
-
Methods inherited from interface adams.gui.visualization.image.selection.SelectionProcessor
processSelection
-
Methods inherited from interface adams.core.ShallowCopySupporter
shallowCopy, shallowCopy
-
-
-
-
Method Detail
-
setLabel
void setLabel(String value)
Sets the label to use for the objects.- Parameters:
value
- the prefix
-
getLabel
String getLabel()
Returns the label to use for the objects.- Returns:
- the label
-
labelTipText
String labelTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
setLabelSuffix
void setLabelSuffix(String value)
Sets the suffix to use for the label.- Parameters:
value
- the suffix
-
getLabelSuffix
String getLabelSuffix()
Returns the suffix to use for the label.- Returns:
- the suffix
-
labelSuffixTipText
String labelSuffixTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
-