Releases the resources used by this PlotWindow
()
| 355 | |
| 356 | /** Releases the resources used by this PlotWindow */ |
| 357 | public void dispose() { |
| 358 | if (plot!=null) |
| 359 | plot.dispose(); |
| 360 | disableLivePlot(); |
| 361 | plot = null; |
| 362 | plotMaker = null; |
| 363 | srcImp = null; |
| 364 | super.dispose(); |
| 365 | } |
| 366 | |
| 367 | /** Called when the window is activated (WindowListener) |
| 368 | * Window layout is finished at latest a few millisec after windowActivated, then the |
nothing calls this directly
no test coverage detected