(double left, double top, double right, double bottom, int color)
| 428 | } |
| 429 | |
| 430 | public static void drawRect(double left, double top, double right, double bottom, int color) { |
| 431 | invoke(drawRect, left, top, right, bottom, color); |
| 432 | } |
| 433 | |
| 434 | public static void drawGradientRect(double left, double top, double right, double bottom, int startColor, int endColor, boolean vertical) { |
| 435 | invoke(drawGradientRect, left, top, right, bottom, startColor, endColor, vertical); |
no test coverage detected