()
| 3944 | /** |
| 3945 | */ |
| 3946 | public void saveFrame() { |
| 3947 | try { |
| 3948 | g.save(savePath("screen-" + nf(frameCount, 4) + ".tif")); |
| 3949 | } catch (SecurityException se) { |
| 3950 | System.err.println("Can't use saveFrame() when running in a browser, " + |
| 3951 | "unless using a signed applet."); |
| 3952 | } |
| 3953 | } |
| 3954 | |
| 3955 | |
| 3956 | /** |
nothing calls this directly
no test coverage detected