(DrawingPanel panel, Graphics g)
| 21 | ArrayData griddata = new ArrayData(numpts, numpts, 3); |
| 22 | GrayscalePlot grayscalePlot = new GrayscalePlot(griddata) { |
| 23 | @Override |
| 24 | public void draw(DrawingPanel panel, Graphics g) { |
| 25 | setRandomVals(); |
| 26 | super.draw(panel, g); |
| 27 | } |
| 28 | }; |
| 29 | PlottingPanel plottingPanel = new PlottingPanel("x", "t", null); |
| 30 | DrawingFrame drawingFrame = new DrawingFrame(plottingPanel); |
nothing calls this directly
no test coverage detected