All methods added in this commit are inherited from the GeoAPI Matrix
interface,
so they do not need to appear here. Furthermore the Javadoc is a copy-and-paste from implementation classes,
so the "which is always {@value #SIZE} in this implementation" sentence is inappropriate
for an interface. Those method declarations have been removed in Geotk and Apache SIS.
Command line:
svn diff --extensions "--unified --ignore-space-change --ignore-all-space --ignore-eol-style" -r24484:24485 https://svn.osgeo.org/geotools/trunk/modules/library/referencing/src/main/java/org/geotools/referencing/operation/matrix/XMatrix.java
Revision 24484 | Revision 24485 |
---|---|
* @source $URL$ * @version $Id$ * @author Martin Desruisseaux */ public interface XMatrix extends Matrix { /** |
* @source $URL$
* @version $Id$
* @author Martin Desruisseaux
* @author Simone Giannecchini
*/
public interface XMatrix extends Matrix {
/** |
* transform. */ void multiply(Matrix matrix); } |
* transform. */ void multiply(Matrix matrix); /** * Returns the number of rows in this matrix, which is always {@value #SIZE} * in this implementation. * @since 2.4 */ public int getNumRow(); /** * Returns the number of colmuns in this matrix, which is always {@value #SIZE} * in this implementation. * @since 2.4 */ public int getNumCol(); /** * Returns the element at the specified index. */ public double getElement(final int row, final int col) ; /** * Set the element at the specified index. * @since 2.4 */ public void setElement(final int row, final int col, final double value); } |