Creates a snapshot of the plot contents (not including axis formats etc), for later undo by restorePlotObjects. See also killPlotObjectsSnapshot
()
| 1584 | /** Creates a snapshot of the plot contents (not including axis formats etc), |
| 1585 | * for later undo by restorePlotObjects. See also killPlotObjectsSnapshot */ |
| 1586 | public void savePlotObjects() { |
| 1587 | allPlotObjectsSnapshot = new Vector<PlotObject>(allPlotObjects.size()); |
| 1588 | copyPlotObjectsVector(allPlotObjects, allPlotObjectsSnapshot); |
| 1589 | } |
| 1590 | |
| 1591 | /** Restores the plot contents (not including axis formats etc) from the snapshot |
| 1592 | * previously created by savePlotObjects(). See also killPlotObjectsSnapshot |
no test coverage detected