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;


Reply via email to