diff --git a/src/java/org/apache/commons/math/ode/AdaptiveStepsizeIntegrator.java b/src/java/org/apache/commons/math/ode/AdaptiveStepsizeIntegrator.java index ee68a479a..2f42334d0 100644 --- a/src/java/org/apache/commons/math/ode/AdaptiveStepsizeIntegrator.java +++ b/src/java/org/apache/commons/math/ode/AdaptiveStepsizeIntegrator.java @@ -168,7 +168,7 @@ public abstract class AdaptiveStepsizeIntegrator /** Get all the switching functions that have been added to the integrator. * @return an unmodifiable collection of the added switching functions - * @see #add(SwitchingFunction, double, double, int) + * @see #addSwitchingFunction(SwitchingFunction, double, double, int) * @see #clearSwitchingFunctions() */ public Collection getSwitchingFunctions() { @@ -176,7 +176,7 @@ public abstract class AdaptiveStepsizeIntegrator } /** Remove all the switching functions that have been added to the integrator. - * @see #add(SwitchingFunction, double, double, int) + * @see #addSwitchingFunction(SwitchingFunction, double, double, int) * @see #getSwitchingFunctions() */ public void clearSwitchingFunctions() { diff --git a/src/java/org/apache/commons/math/ode/FirstOrderIntegrator.java b/src/java/org/apache/commons/math/ode/FirstOrderIntegrator.java index 13473ca1d..2124d031b 100644 --- a/src/java/org/apache/commons/math/ode/FirstOrderIntegrator.java +++ b/src/java/org/apache/commons/math/ode/FirstOrderIntegrator.java @@ -71,13 +71,13 @@ public interface FirstOrderIntegrator { /** Get all the switching functions that have been added to the integrator. * @return an unmodifiable collection of the added switching functions - * @see #add(SwitchingFunction, double, double, int) + * @see #addSwitchingFunction(SwitchingFunction, double, double, int) * @see #clearSwitchingFunctions() */ public Collection getSwitchingFunctions(); /** Remove all the switching functions that have been added to the integrator. - * @see #add(SwitchingFunction, double, double, int) + * @see #addSwitchingFunction(SwitchingFunction, double, double, int) * @see #getSwitchingFunctions() */ public void clearSwitchingFunctions(); diff --git a/src/java/org/apache/commons/math/ode/RungeKuttaIntegrator.java b/src/java/org/apache/commons/math/ode/RungeKuttaIntegrator.java index a81d10933..a4e365b0b 100644 --- a/src/java/org/apache/commons/math/ode/RungeKuttaIntegrator.java +++ b/src/java/org/apache/commons/math/ode/RungeKuttaIntegrator.java @@ -110,7 +110,7 @@ public abstract class RungeKuttaIntegrator /** Get all the switching functions that have been added to the integrator. * @return an unmodifiable collection of the added switching functions - * @see #add(SwitchingFunction, double, double, int) + * @see #addSwitchingFunction(SwitchingFunction, double, double, int) * @see #clearSwitchingFunctions() */ public Collection getSwitchingFunctions() { @@ -118,7 +118,7 @@ public abstract class RungeKuttaIntegrator } /** Remove all the switching functions that have been added to the integrator. - * @see #add(SwitchingFunction, double, double, int) + * @see #addSwitchingFunction(SwitchingFunction, double, double, int) * @see #getSwitchingFunctions() */ public void clearSwitchingFunctions() {