Author: luc
Date: Sun May 18 08:20:00 2008
New Revision: 657572

URL: http://svn.apache.org/viewvc?rev=657572&view=rev
Log:
fixed javadoc links

Modified:
    
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/ode/AdaptiveStepsizeIntegrator.java
    
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/ode/FirstOrderIntegrator.java
    
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/ode/RungeKuttaIntegrator.java

Modified: 
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/ode/AdaptiveStepsizeIntegrator.java
URL: 
http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/ode/AdaptiveStepsizeIntegrator.java?rev=657572&r1=657571&r2=657572&view=diff
==============================================================================
--- 
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/ode/AdaptiveStepsizeIntegrator.java
 (original)
+++ 
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/ode/AdaptiveStepsizeIntegrator.java
 Sun May 18 08:20:00 2008
@@ -168,7 +168,7 @@
 
   /** 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 @@
   }
 
   /** 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() {

Modified: 
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/ode/FirstOrderIntegrator.java
URL: 
http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/ode/FirstOrderIntegrator.java?rev=657572&r1=657571&r2=657572&view=diff
==============================================================================
--- 
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/ode/FirstOrderIntegrator.java
 (original)
+++ 
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/ode/FirstOrderIntegrator.java
 Sun May 18 08:20:00 2008
@@ -71,13 +71,13 @@
 
   /** 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();

Modified: 
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/ode/RungeKuttaIntegrator.java
URL: 
http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/ode/RungeKuttaIntegrator.java?rev=657572&r1=657571&r2=657572&view=diff
==============================================================================
--- 
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/ode/RungeKuttaIntegrator.java
 (original)
+++ 
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/ode/RungeKuttaIntegrator.java
 Sun May 18 08:20:00 2008
@@ -110,7 +110,7 @@
 
   /** 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 @@
   }
 
   /** 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() {


Reply via email to