Author: sebb
Date: Sat Feb 5 19:33:49 2011
New Revision: 1067489
URL: http://svn.apache.org/viewvc?rev=1067489&view=rev
Log:
Add some @since 2.2 markers
Modified:
commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/MathException.java
commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/MathRuntimeException.java
commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/analysis/interpolation/BicubicSplineInterpolatingFunction.java
commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/analysis/interpolation/LinearInterpolator.java
Modified:
commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/MathException.java
URL:
http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/MathException.java?rev=1067489&r1=1067488&r2=1067489&view=diff
==============================================================================
---
commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/MathException.java
(original)
+++
commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/MathException.java
Sat Feb 5 19:33:49 2011
@@ -144,12 +144,20 @@ public class MathException extends Excep
return pattern.getSourceString();
}
- /** {@inheritDoc} */
+ /**
+ * {@inheritDoc}
+ *
+ * @since 2.2
+ */
public Localizable getSpecificPattern() {
return null;
}
- /** {@inheritDoc} */
+ /**
+ * {@inheritDoc}
+ *
+ * @since 2.2
+ */
public Localizable getGeneralPattern() {
return pattern;
}
Modified:
commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/MathRuntimeException.java
URL:
http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/MathRuntimeException.java?rev=1067489&r1=1067488&r2=1067489&view=diff
==============================================================================
---
commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/MathRuntimeException.java
(original)
+++
commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/MathRuntimeException.java
Sat Feb 5 19:33:49 2011
@@ -148,12 +148,20 @@ public class MathRuntimeException extend
return pattern.getSourceString();
}
- /** {@inheritDoc} */
+ /**
+ * {@inheritDoc}
+ *
+ * @since 2.2
+ */
public Localizable getSpecificPattern() {
return null;
}
- /** {@inheritDoc} */
+ /**
+ * {@inheritDoc}
+ *
+ * @since 2.2
+ */
public Localizable getGeneralPattern() {
return pattern;
}
Modified:
commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/analysis/interpolation/BicubicSplineInterpolatingFunction.java
URL:
http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/analysis/interpolation/BicubicSplineInterpolatingFunction.java?rev=1067489&r1=1067488&r2=1067489&view=diff
==============================================================================
---
commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/analysis/interpolation/BicubicSplineInterpolatingFunction.java
(original)
+++
commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/analysis/interpolation/BicubicSplineInterpolatingFunction.java
Sat Feb 5 19:33:49 2011
@@ -176,6 +176,7 @@ public class BicubicSplineInterpolatingF
* @param y y-coordinate.
* @return the value at point (x, y) of the first partial derivative with
* respect to x.
+ * @since 2.2
*/
public double partialDerivativeX(double x, double y) {
return partialDerivative(0, x, y);
@@ -185,6 +186,7 @@ public class BicubicSplineInterpolatingF
* @param y y-coordinate.
* @return the value at point (x, y) of the first partial derivative with
* respect to y.
+ * @since 2.2
*/
public double partialDerivativeY(double x, double y) {
return partialDerivative(1, x, y);
@@ -194,6 +196,7 @@ public class BicubicSplineInterpolatingF
* @param y y-coordinate.
* @return the value at point (x, y) of the second partial derivative with
* respect to x.
+ * @since 2.2
*/
public double partialDerivativeXX(double x, double y) {
return partialDerivative(2, x, y);
@@ -203,6 +206,7 @@ public class BicubicSplineInterpolatingF
* @param y y-coordinate.
* @return the value at point (x, y) of the second partial derivative with
* respect to y.
+ * @since 2.2
*/
public double partialDerivativeYY(double x, double y) {
return partialDerivative(3, x, y);
@@ -211,6 +215,7 @@ public class BicubicSplineInterpolatingF
* @param x x-coordinate.
* @param y y-coordinate.
* @return the value at point (x, y) of the second partial
cross-derivative.
+ * @since 2.2
*/
public double partialDerivativeXY(double x, double y) {
return partialDerivative(4, x, y);
Modified:
commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/analysis/interpolation/LinearInterpolator.java
URL:
http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/analysis/interpolation/LinearInterpolator.java?rev=1067489&r1=1067488&r2=1067489&view=diff
==============================================================================
---
commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/analysis/interpolation/LinearInterpolator.java
(original)
+++
commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/analysis/interpolation/LinearInterpolator.java
Sat Feb 5 19:33:49 2011
@@ -26,6 +26,7 @@ import org.apache.commons.math.util.Math
/**
* Implements a linear function for interpolation of real univariate functions.
* @version $Revision$ $Date$
+ * @since 2.2
*/
public class LinearInterpolator implements UnivariateRealInterpolator {
/**