Revision: 1070
Author: heuermh
Date: Thu Sep 30 10:07:02 2010
Log: minor doc fixes
http://code.google.com/p/piccolo2d/source/detail?r=1070

Modified:
/piccolo2d.java/trunk/jdk16-examples/src/main/java/org/piccolo2d/jdk16/examples/AnimatePathExample.java

=======================================
--- /piccolo2d.java/trunk/jdk16-examples/src/main/java/org/piccolo2d/jdk16/examples/AnimatePathExample.java Thu Sep 30 10:00:37 2010 +++ /piccolo2d.java/trunk/jdk16-examples/src/main/java/org/piccolo2d/jdk16/examples/AnimatePathExample.java Thu Sep 30 10:07:02 2010
@@ -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);

--
Piccolo2D Developers Group: http://groups.google.com/group/piccolo2d-dev?hl=en

Reply via email to