diff --git a/jdk16-examples/src/main/java/org/piccolo2d/jdk16/examples/AnimatePathExample.java b/jdk16-examples/src/main/java/org/piccolo2d/jdk16/examples/AnimatePathExample.java index 8612c75..a7de7a1 100755 --- a/jdk16-examples/src/main/java/org/piccolo2d/jdk16/examples/AnimatePathExample.java +++ b/jdk16-examples/src/main/java/org/piccolo2d/jdk16/examples/AnimatePathExample.java @@ -67,16 +67,16 @@ /** - * Create a new path example. + * Create a new animate path example. */ public AnimatePathExample() { this(null); } /** - * Create a new path example with the specified canvas. + * Create a new animate path example with the specified canvas. * - * @param canvas canvas for this path example + * @param canvas canvas for this animate path example */ public AnimatePathExample(final PCanvas canvas) { super("AnimatePathExample", false, canvas); @@ -94,7 +94,6 @@ curve.setStrokePaint(STROKE_PAINT); PInputEventListener animateCurve = new PBasicInputEventHandler() { - /** {@inheritDoc} */ public void mousePressed(final PInputEvent event) { animateCurve(); @@ -111,7 +110,7 @@ */ private void animateCurve() { curve.addActivity(new PInterpolatingActivity(1000L) { - /** @inheritDoc */ + /** {@inheritDoc} */ public void setRelativeTargetValue(final float value) { curve.reset(); curve.moveTo(100.0d, 100.0d);