Enables or disables live plotting. Does nothing if the plot has no PlotMaker (then there is no 'live' button).
(boolean b)
| 940 | /** Enables or disables live plotting. |
| 941 | * Does nothing if the plot has no PlotMaker (then there is no 'live' button). */ |
| 942 | public void enableLivePlot(boolean b) { |
| 943 | if (plot==null || plot.getPlotMaker()==null || live == null) |
| 944 | return; |
| 945 | if (b && bgThread == null) |
| 946 | enableLivePlot(); |
| 947 | else if (!b && bgThread != null) |
| 948 | disableLivePlot(); |
| 949 | } |
| 950 | |
| 951 | private void toggleLivePlot() { |
| 952 | boolean liveMode = bgThread != null; |
no test coverage detected