Package mgui.interfaces.plots.sgt
Interface SgtPlotListener
- All Known Implementing Classes:
SgtCartesianLayout
,SgtLineLayout
,SgtPlotLayout
,SgtPointSetLayout
public interface SgtPlotListener
Defines an object which responds to events on an
InterfacePlotSgt
.- Since:
- 1.0
- Version:
- 1.0
- Author:
- Andrew Reid
-
Method Summary
Modifier and Type Method Description void
plotObjectAdded(SgtPlotEvent e)
Updates this plot in response to an additional data object.void
plotObjectModified(SgtPlotEvent e)
Updates this plot in response to the modification of a data object.void
plotObjectRemoved(SgtPlotEvent e)
Updates this plot in response to the removal of a data object.
-
Method Details
-
plotObjectAdded
Updates this plot in response to an additional data object.- Parameters:
data
-
-
plotObjectRemoved
Updates this plot in response to the removal of a data object.- Parameters:
data
-
-
plotObjectModified
Updates this plot in response to the modification of a data object.- Parameters:
data
-
-