| 38 | } |
| 39 | |
| 40 | private class CheckBoxIcon implements FImage { |
| 41 | @Override |
| 42 | public float getWidth() { |
| 43 | return FCheckBox.this.getHeight(); |
| 44 | } |
| 45 | |
| 46 | @Override |
| 47 | public float getHeight() { |
| 48 | return FCheckBox.this.getHeight(); |
| 49 | } |
| 50 | |
| 51 | @Override |
| 52 | public void draw(Graphics g, float x, float y, float w, float h) { |
| 53 | drawCheckBox(g, isSelected(), x, y, w, h); |
| 54 | } |
| 55 | } |
| 56 | |
| 57 | @Override |
| 58 | public void draw(Graphics g) { |
nothing calls this directly
no outgoing calls
no test coverage detected