From a82ada1d9709b912a75af20f04aa90685332e3e6 Mon Sep 17 00:00:00 2001 From: Luc Maisonobe <luc@orekit.org> Date: Mon, 22 Dec 2014 09:27:15 +0100 Subject: [PATCH] Fixed javadoc warnings. --- .../java/org/orekit/rugged/api/RuggedBuilder.java | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/src/main/java/org/orekit/rugged/api/RuggedBuilder.java b/src/main/java/org/orekit/rugged/api/RuggedBuilder.java index 15186905..8cf5bbcb 100644 --- a/src/main/java/org/orekit/rugged/api/RuggedBuilder.java +++ b/src/main/java/org/orekit/rugged/api/RuggedBuilder.java @@ -461,6 +461,7 @@ public class RuggedBuilder { } /** Get the satellite position and velocity (m and m/s in inertial frame). + * @return satellite position and velocity (m and m/s in inertial frame) * @see #setTrajectory(double, int, CartesianDerivativesFilter, AngularDerivativesFilter, Propagator) */ public List<TimeStampedPVCoordinates> getpositionsVelocities() { @@ -468,34 +469,39 @@ public class RuggedBuilder { } /** Get the number of points to use for position/velocity interpolation. + * @return number of points to use for position/velocity interpolation * @see #setTrajectory(double, int, CartesianDerivativesFilter, AngularDerivativesFilter, Propagator) */ public int getPVInterpolationNumber() { return pvNeighborsSize; } - /** Get the Filter for derivatives from the sample to use in position/velocity interpolation. + /** Get the filter for derivatives from the sample to use in position/velocity interpolation. + * @return filter for derivatives from the sample to use in position/velocity interpolation * @see #setTrajectory(double, int, CartesianDerivativesFilter, AngularDerivativesFilter, Propagator) */ public CartesianDerivativesFilter getPVFilter() { return pvDerivatives; } - /** Get the Satellite quaternions with respect to inertial frame. + /** Get the satellite quaternions with respect to inertial frame. + * @return satellite quaternions with respect to inertial frame * @see #setTrajectory(double, int, CartesianDerivativesFilter, AngularDerivativesFilter, Propagator) */ public List<TimeStampedAngularCoordinates> getQuaternions() { return aSample; } - /** Get the Number of points to use for attitude interpolation. + /** Get the number of points to use for attitude interpolation. + * @return number of points to use for attitude interpolation * @see #setTrajectory(double, int, CartesianDerivativesFilter, AngularDerivativesFilter, Propagator) */ public int getAInterpolationNumber() { return aNeighborsSize; } - /** Get the Filter for derivatives from the sample to use in attitude interpolation. + /** Get the filter for derivatives from the sample to use in attitude interpolation. + * @return filter for derivatives from the sample to use in attitude interpolation * @see #setTrajectory(double, int, CartesianDerivativesFilter, AngularDerivativesFilter, Propagator) */ public AngularDerivativesFilter getAFilter() { -- GitLab