Package adams.gui.visualization.sequence
Interface PaintletWithOptionalPointPreprocessor
-
- All Superinterfaces:
Paintlet
,ShallowCopySupporter<Paintlet>
- All Known Implementing Classes:
AbstractControlChartPaintlet
,AbstractErrorPaintlet
,AbstractXYSequenceMetaDataColorPaintlet
,AbstractXYSequencePaintlet
,BarPaintlet
,ByNameErrorPaintlet
,ByNamePaintlet
,ChartPaintlet
,CirclePaintlet
,CrossPaintlet
,DotPaintlet
,ErrorBandPaintlet
,ErrorCirclePaintlet
,ErrorCrossPaintlet
,IncrementalSumPaintlet
,LimitPaintlet
,LinePaintlet
,MathExpressionOverlayPaintlet
,MeanOverlayPaintlet
,MedianOverlayPaintlet
,MetaDataValuePaintlet
,NoErrorPaintlet
,NullPaintlet
,OutlierPaintlet
,PaintletWithFixedXRange
,PaintletWithFixedXYRange
,PaintletWithFixedYRange
,PercentileOverlayPaintlet
,PolygonSelectionPaintlet
,SimpleErrorPaintlet
,SquarePaintlet
,StdDevOverlayPaintlet
,StickPaintlet
,TrianglePaintlet
public interface PaintletWithOptionalPointPreprocessor extends Paintlet
Interface for XYSequence paintlets that support point preprocessing.- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PointPreprocessor
getPointPreprocessor()
Returns the point preprocessor in use.void
setPointPreprocessor(PointPreprocessor value)
Sets the point preprocessor to use.boolean
supportsPointPreprocessor()
Returns whether point preprocessing is actually supported.-
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
-
setPointPreprocessor
void setPointPreprocessor(PointPreprocessor value)
Sets the point preprocessor to use.- Parameters:
value
- the preprocessor
-
getPointPreprocessor
PointPreprocessor getPointPreprocessor()
Returns the point preprocessor in use.- Returns:
- the preprocessor
-
supportsPointPreprocessor
boolean supportsPointPreprocessor()
Returns whether point preprocessing is actually supported.- Returns:
- true if supported
-
-