(Color borderColor, float x, float y, float w, float h)
| 765 | } |
| 766 | |
| 767 | public void drawborderImage(Color borderColor, float x, float y, float w, float h) { |
| 768 | float oldalpha = alphaComposite; |
| 769 | fillRoundRect(borderColor, x, y, w, h, (h - w) / 12); |
| 770 | setAlphaComposite(oldalpha); |
| 771 | } |
| 772 | |
| 773 | public void drawImage(FImage image, Color borderColor, float x, float y, float w, float h) { |
| 774 | if (image == null) |
no test coverage detected