From e59b32556030f7264798076f12d3a912317cae7e Mon Sep 17 00:00:00 2001 From: paulby Date: Thu, 21 Oct 2004 19:29:49 +0000 Subject: More javadoc fixes, change @return to @param where for methods with void return. Issue number: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.java.net/svn/j3d-core~svn/trunk@60 ba19aa83-45c5-6ac9-afd3-db810772062c --- src/classes/share/javax/media/j3d/PickPoint.java | 2 +- src/classes/share/javax/media/j3d/RotPosScalePathInterpolator.java | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/classes/share/javax/media/j3d/PickPoint.java b/src/classes/share/javax/media/j3d/PickPoint.java index 074233b..fc1268c 100644 --- a/src/classes/share/javax/media/j3d/PickPoint.java +++ b/src/classes/share/javax/media/j3d/PickPoint.java @@ -53,7 +53,7 @@ public final class PickPoint extends PickShape { /** * Gets the position of this PickPoint. - * @return the current pick point. + * @param location returns the current pick point. */ public void get(Point3d location) { location.x = this.location.x; diff --git a/src/classes/share/javax/media/j3d/RotPosScalePathInterpolator.java b/src/classes/share/javax/media/j3d/RotPosScalePathInterpolator.java index e5f3ff9..5d6fd31 100644 --- a/src/classes/share/javax/media/j3d/RotPosScalePathInterpolator.java +++ b/src/classes/share/javax/media/j3d/RotPosScalePathInterpolator.java @@ -110,7 +110,7 @@ public class RotPosScalePathInterpolator extends PathInterpolator { /** * Retrieves the quat value at the specified index. * @param index the index of the value requested - * @return the interpolator's quat value at the index + * @param quat returns the interpolator's quat value at the index */ public void getQuat(int index, Quat4f quat) { quat.set(this.quats[index]); @@ -131,7 +131,7 @@ public class RotPosScalePathInterpolator extends PathInterpolator { /** * Retrieves the position value at the specified index. * @param index the index of the value requested - * @return the interpolator's position value at the index + * @param position returns the interpolator's position value at the index */ public void getPosition(int index, Point3f position) { position.set(this.positions[index]); -- cgit v1.2.3