diff options
author | paulby <[email protected]> | 2004-10-21 19:29:49 +0000 |
---|---|---|
committer | paulby <[email protected]> | 2004-10-21 19:29:49 +0000 |
commit | e59b32556030f7264798076f12d3a912317cae7e (patch) | |
tree | 4915ae4734a8a19b5747d45f959e9198dde76181 /src/classes | |
parent | 44f5c4ea7ec3f5b6bb66077ee690a80bc3ef9450 (diff) |
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
Diffstat (limited to 'src/classes')
-rw-r--r-- | src/classes/share/javax/media/j3d/PickPoint.java | 2 | ||||
-rw-r--r-- | 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]); |