Package adams.flow.core
Interface DataPlotUpdaterHandler<T extends AbstractDataPlotUpdater>
-
- All Superinterfaces:
DataPlotUpdaterSupporter<T>
- All Known Implementing Classes:
SequencePlotter
,TimeseriesDisplay
public interface DataPlotUpdaterHandler<T extends AbstractDataPlotUpdater> extends DataPlotUpdaterSupporter<T>
Interface for plots that support updating.- Version:
- $Revision$
- Author:
- FracPete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
getPlotUpdater()
Returns the plot updater in use.String
plotUpdaterTipText()
Returns the tip text for this property.void
setPlotUpdater(T value)
Sets the plot updater to use.void
updatePlot()
Updates the data container panel regardless, notifying the listeners.
-
-
-
Method Detail
-
setPlotUpdater
void setPlotUpdater(T value)
Sets the plot updater to use.- Parameters:
value
- the updater
-
getPlotUpdater
T getPlotUpdater()
Returns the plot updater in use.- Returns:
- the updater
-
plotUpdaterTipText
String plotUpdaterTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
updatePlot
void updatePlot()
Updates the data container panel regardless, notifying the listeners.- Specified by:
updatePlot
in interfaceDataPlotUpdaterSupporter<T extends AbstractDataPlotUpdater>
-
-