Fills a rectangle with top-left corner placed at (x,y).
(int x, int y, int width, int height)
| 1022 | * Fills a rectangle with top-left corner placed at (x,y). |
| 1023 | */ |
| 1024 | @Override |
| 1025 | public void fillRect(int x, int y, int width, int height) { |
| 1026 | Shape shape = new Rectangle(x, y, width, height); |
| 1027 | draw(shape, "fill"); //$NON-NLS-1$ |
| 1028 | } |
| 1029 | |
| 1030 | /** |
| 1031 | * Draws a rectangle with top-left corner placed at (x,y). |
no test coverage detected