Circle.
| 6 | * Circle. |
| 7 | */ |
| 8 | public class Circle extends ShapeImpl { |
| 9 | /** The r. */ |
| 10 | private final float r; |
| 11 | |
| 12 | /** |
| 13 | * Constructor. |
| 14 | * |
| 15 | * @param x |
| 16 | * the x |
| 17 | * @param y |
| 18 | * the y |
| 19 | * @param r |
| 20 | * the r |
| 21 | */ |
| 22 | public Circle(final float x, final float y, final float r) { |
| 23 | super(x, y); |
| 24 | this.r = r; |
| 25 | } |
| 26 | |
| 27 | /** |
| 28 | * Get the r. |
| 29 | * |
| 30 | * @return the r |
| 31 | */ |
| 32 | public float getR() { |
| 33 | return r; |
| 34 | } |
| 35 | |
| 36 | /* (non-Javadoc) |
| 37 | * @see com.xyz.fig.shape.ShapeImpl#draw(java.awt.Graphics2D) |
| 38 | */ |
| 39 | @Override |
| 40 | public void draw(final Graphics2D f) { |
| 41 | throw new RuntimeException("Not implemented"); |
| 42 | } |
| 43 | } |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…