You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2011/02/05 20:58:45 UTC

svn commit: r1067495 - /commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/ode/sampling/AbstractStepInterpolator.java

Author: sebb
Date: Sat Feb  5 19:58:45 2011
New Revision: 1067495

URL: http://svn.apache.org/viewvc?rev=1067495&view=rev
Log:
Add some @since 2.2 markers

Modified:
    commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/ode/sampling/AbstractStepInterpolator.java

Modified: commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/ode/sampling/AbstractStepInterpolator.java
URL: http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/ode/sampling/AbstractStepInterpolator.java?rev=1067495&r1=1067494&r2=1067495&view=diff
==============================================================================
--- commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/ode/sampling/AbstractStepInterpolator.java (original)
+++ commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/ode/sampling/AbstractStepInterpolator.java Sat Feb  5 19:58:45 2011
@@ -250,6 +250,7 @@ public abstract class AbstractStepInterp
    * </p>
    * @param softPreviousTime start of the restricted step
    * @param softCurrentTime end of the restricted step
+   * @since 2.2
    */
   public void setSoftBounds(final double softPreviousTime, final double softCurrentTime) {
       this.softPreviousTime = softPreviousTime;
@@ -259,6 +260,7 @@ public abstract class AbstractStepInterp
   /**
    * Get the previous global grid point time.
    * @return previous global grid point time
+   * @since 2.2
    */
   public double getGlobalPreviousTime() {
     return globalPreviousTime;
@@ -267,6 +269,7 @@ public abstract class AbstractStepInterp
   /**
    * Get the current global grid point time.
    * @return current global grid point time
+   * @since 2.2
    */
   public double getGlobalCurrentTime() {
     return globalCurrentTime;