@deprecated replaced by the Plot class.
(String title, String xLabel, String yLabel, float[] xValues, float[] yValues)
| 166 | * replaced by the Plot class. |
| 167 | */ |
| 168 | public PlotWindow(String title, String xLabel, String yLabel, float[] xValues, float[] yValues) { |
| 169 | super(createImage(title, xLabel, yLabel, xValues, yValues)); |
| 170 | plot = staticPlot; |
| 171 | ((PlotCanvas)getCanvas()).setPlot(plot); |
| 172 | } |
| 173 | |
| 174 | /** |
| 175 | * @deprecated |
nothing calls this directly
no test coverage detected