fixed javadoc links
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/branches/MATH_2_0@657572 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
ec56c2c5ff
commit
f8b2fa71fb
|
@ -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() {
|
||||
|
|
|
@ -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();
|
||||
|
|
|
@ -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() {
|
||||
|
|
Loading…
Reference in New Issue