Package ptolemy.plot
Interface EditListener
-
- All Known Implementing Classes:
SketchApplet
,SketchedSource
public interface EditListener
Interface for listeners that are informed of plot edit events. These events are generated when a user modifies the plot data using interactive facilities of an editable subclass of Plot.- Since:
- Ptolemy II 0.4
- Version:
- $Id$
- Author:
- Edward A. Lee
- See Also:
EditablePlot
- Pt.AcceptedRating:
- Red (cxh)
- Pt.ProposedRating:
- Red (eal)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
editDataModified(EditablePlot source, int dataset)
Notify that data in the specified plot has been modified by a user edit action.
-
-
-
Method Detail
-
editDataModified
void editDataModified(EditablePlot source, int dataset)
Notify that data in the specified plot has been modified by a user edit action.- Parameters:
source
- The plot containing the modified data.dataset
- The data set that has been modified.
-
-