Get a buffered (persistent) image for drawing on this component
()
| 69 | Get a buffered (persistent) image for drawing on this component |
| 70 | */ |
| 71 | public Graphics getBufferedGraphics() { |
| 72 | Dimension dim = getSize(); |
| 73 | imageBuffer = createImage( dim.width, dim.height ); |
| 74 | return imageBuffer.getGraphics(); |
| 75 | } |
| 76 | |
| 77 | public void setBounds( int x, int y, int width, int height ) { |
| 78 | setPreferredSize( new Dimension(width, height) ); |
no test coverage detected