MCPcopy Index your code
hub / github.com/classgraph/classgraph / Circle

Class Circle

src/test/java/com/xyz/fig/shape/Circle.java:8–43  ·  view source on GitHub ↗

Circle.

Source from the content-addressed store, hash-verified

6 * Circle.
7 */
8public 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…