Author: sebb
Date: Sat Apr 25 02:01:23 2009
New Revision: 768449

URL: http://svn.apache.org/viewvc?rev=768449&view=rev
Log:
Javadoc fixes

Modified:
    
commons/proper/math/trunk/src/java/org/apache/commons/math/linear/DenseFieldMatrix.java
    
commons/proper/math/trunk/src/java/org/apache/commons/math/linear/FieldVector.java

Modified: 
commons/proper/math/trunk/src/java/org/apache/commons/math/linear/DenseFieldMatrix.java
URL: 
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/java/org/apache/commons/math/linear/DenseFieldMatrix.java?rev=768449&r1=768448&r2=768449&view=diff
==============================================================================
--- 
commons/proper/math/trunk/src/java/org/apache/commons/math/linear/DenseFieldMatrix.java
 (original)
+++ 
commons/proper/math/trunk/src/java/org/apache/commons/math/linear/DenseFieldMatrix.java
 Sat Apr 25 02:01:23 2009
@@ -137,7 +137,7 @@
      *
      * @exception IllegalArgumentException if <code>blockData</code> shape is
      * inconsistent with block layout
-     * @see #createBlocksLayout(int, int)
+     * @see #createBlocksLayout(Field, int, int)
      * @see #toBlocksLayout(T[][])
      * @see #DenseFieldMatrix(T[][])
      */
@@ -197,7 +197,7 @@
      * @return a new data array containing the same entries but in blocks 
layout
      * @exception IllegalArgumentException if <code>rawData</code> is not 
rectangular
      *  (not all rows have the same length)
-     * @see #createBlocksLayout(int, int)
+     * @see #createBlocksLayout(Field, int, int)
      * @see #DenseFieldMatrix(int, int, T[][], boolean)
      */
     public static <T extends FieldElement<T>> T[][] toBlocksLayout(final T[][] 
rawData)

Modified: 
commons/proper/math/trunk/src/java/org/apache/commons/math/linear/FieldVector.java
URL: 
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/java/org/apache/commons/math/linear/FieldVector.java?rev=768449&r1=768448&r2=768449&view=diff
==============================================================================
--- 
commons/proper/math/trunk/src/java/org/apache/commons/math/linear/FieldVector.java
 (original)
+++ 
commons/proper/math/trunk/src/java/org/apache/commons/math/linear/FieldVector.java
 Sat Apr 25 02:01:23 2009
@@ -271,7 +271,7 @@
      * @param index  index location of entry to be fetched
      * @return vector entry at index
      * @throws MatrixIndexException if the index is not valid
-     * @see #setEntry(int, T)
+     * @see #setEntry(int, FieldElement)
      */
     T getEntry(int index)
         throws MatrixIndexException;


Reply via email to