Package adams.gui.visualization.sequence
Interface XYSequencePaintletWithCustomerContainerManager
-
- All Superinterfaces:
Paintlet,ShallowCopySupporter<Paintlet>,XYSequencePaintlet
- All Known Implementing Classes:
AbstractControlChartPaintlet,AbstractXYSequenceMetaDataColorPaintlet,AbstractXYSequencePaintlet,BarPaintlet,ByNamePaintlet,ChartPaintlet,CirclePaintlet,CrossPaintlet,DotPaintlet,ErrorCirclePaintlet,ErrorCrossPaintlet,IncrementalSumPaintlet,LimitPaintlet,LinePaintlet,MathExpressionOverlayPaintlet,MeanOverlayPaintlet,MedianOverlayPaintlet,MetaDataValuePaintlet,MultiPaintlet,NullPaintlet,OutlierPaintlet,PaintletWithFixedXRange,PaintletWithFixedXYRange,PaintletWithFixedYRange,PercentileOverlayPaintlet,PolygonSelectionPaintlet,SquarePaintlet,StdDevOverlayPaintlet,StickPaintlet,TrianglePaintlet
public interface XYSequencePaintletWithCustomerContainerManager extends XYSequencePaintlet
Interface for XY sequence paintlets that support custom container managers.- Version:
- $Revision$
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description XYSequenceContainerManagergetActualContainerManager()Returns the container manager in use.XYSequenceContainerManagergetCustomerContainerManager()Returns the current custom container manager to obtain the sequences from.voidsetCustomContainerManager(XYSequenceContainerManager value)Sets the custom container manager to obtain the sequences from.-
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
-
Methods inherited from interface adams.gui.visualization.sequence.XYSequencePaintlet
getSequencePanel, newHitDetector
-
-
-
-
Method Detail
-
setCustomContainerManager
void setCustomContainerManager(XYSequenceContainerManager value)
Sets the custom container manager to obtain the sequences from.- Parameters:
value- the manager
-
getCustomerContainerManager
XYSequenceContainerManager getCustomerContainerManager()
Returns the current custom container manager to obtain the sequences from.- Returns:
- the manager, null if none set
-
getActualContainerManager
XYSequenceContainerManager getActualContainerManager()
Returns the container manager in use. Custom manager overrides the sequence panel's one.- Returns:
- the container manager
- See Also:
getCustomerContainerManager()
-
-