Author: erans
Date: Tue Dec  7 14:20:37 2010
New Revision: 1043058

URL: http://svn.apache.org/viewvc?rev=1043058&view=rev
Log:
Added remark on future replacement of deprecated methods.

Modified:
    
commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/linear/RealVector.java

Modified: 
commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/linear/RealVector.java
URL: 
http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/linear/RealVector.java?rev=1043058&r1=1043057&r2=1043058&view=diff
==============================================================================
--- 
commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/linear/RealVector.java
 (original)
+++ 
commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/linear/RealVector.java
 Tue Dec  7 14:20:37 2010
@@ -41,6 +41,12 @@ import org.apache.commons.math.exception
  * <pre>
  *   RealVector result = v.mapAddToSelf(3.0).mapTanToSelf().mapSquareToSelf();
  * </pre>
+ * <p>
+ *  Remark on the deprecated {...@code mapXxx} and {...@code mapXxxToSelf} 
methods: In
+ *  Commons-Math v3.0, the same functionality will be achieved by directly 
using the
+ *  {...@link #map(UnivariateRealFunction)} and {...@link 
#mapToSelf(UnivariateRealFunction)}
+ *  together with new function objects (not available in v2.2).
+ * </p>
  *
  * @version $Revision$ $Date$
  * @since 2.0


Reply via email to