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 TgetPlotUpdater()Returns the plot updater in use.StringplotUpdaterTipText()Returns the tip text for this property.voidsetPlotUpdater(T value)Sets the plot updater to use.voidupdatePlot()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:
updatePlotin interfaceDataPlotUpdaterSupporter<T extends AbstractDataPlotUpdater>
-
-