Package adams.gui.visualization.core
Interface PaintletWithContainerIDMatching
-
- All Superinterfaces:
Paintlet
,ShallowCopySupporter<Paintlet>
- All Known Implementing Classes:
AbstractStrokePaintletWithContainerIDMatching
,LinearRegressionOverlayPaintlet
,LOWESSOverlayPaintlet
public interface PaintletWithContainerIDMatching extends Paintlet
Interface for paintlets that only work with containers that match the provided regular expression.- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BaseRegExp
getContainerIDRegExp()
Returns the regular expression the container IDs must match.void
setContainerIDRegExp(BaseRegExp value)
Sets the regular expression the container IDs must match.-
Methods inherited from interface adams.gui.visualization.core.Paintlet
canPaint, getPaintMoment, getPanel, getPlot, getRepaintOnChange, hasPanel, isEnabled, paint, performPaint, setEnabled, setPanel, setPanel, setRepaintOnChange
-
Methods inherited from interface adams.core.ShallowCopySupporter
shallowCopy, shallowCopy
-
-
-
-
Method Detail
-
setContainerIDRegExp
void setContainerIDRegExp(BaseRegExp value)
Sets the regular expression the container IDs must match.- Parameters:
value
- the expression
-
getContainerIDRegExp
BaseRegExp getContainerIDRegExp()
Returns the regular expression the container IDs must match.- Returns:
- the expression
-
-