(Graphics g)
| 55 | } |
| 56 | |
| 57 | @Override |
| 58 | public void draw(Graphics g) { |
| 59 | drawContent(g, getWidth(), getHeight(), false); |
| 60 | } |
| 61 | |
| 62 | public static void drawCheckBox(Graphics g, boolean isChecked, float x, float y, float w, float h) { |
| 63 | drawCheckBox(g, getBoxColor(), getCheckColor(), isChecked, x, y, w, h); |
nothing calls this directly
no test coverage detected