]> source.dussan.org Git - poi.git/commitdiff
fix javadoc warnings from r1715839 bug 58365
authorJaven O'Neal <onealj@apache.org>
Mon, 23 Nov 2015 23:34:33 +0000 (23:34 +0000)
committerJaven O'Neal <onealj@apache.org>
Mon, 23 Nov 2015 23:34:33 +0000 (23:34 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1715987 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/poi/hssf/usermodel/HSSFSheet.java
src/java/org/apache/poi/ss/usermodel/Sheet.java
src/ooxml/java/org/apache/poi/xssf/streaming/SXSSFSheet.java
src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFSheet.java

index 7e22d7cf261b7f3588c50d4f2c35ed37b576cc55..f1a1af7b7b4e89d9b59c97f0a0153d89d867e30b 100644 (file)
@@ -2046,7 +2046,7 @@ public final class HSSFSheet implements org.apache.poi.ss.usermodel.Sheet {
      * Returns cell comment for the specified row and column
      *
      * @return cell comment or <code>null</code> if not found
-     * @deprecated as of 2015-11-23 (circa POI 3.14beta1). Use {@link #getCellComment(CellReference)} instead.
+     * @deprecated as of 2015-11-23 (circa POI 3.14beta1). Use {@link #getCellComment(CellAddress)} instead.
      */
     @Override
     public HSSFComment getCellComment(int row, int column) {
index 036fc279a8c93ca3ffa61b0ce6010261e4b6a11f..5a9b05fb572cb40fae30426900c697e1ed5f7ac9 100644 (file)
@@ -893,7 +893,7 @@ public interface Sheet extends Iterable<Row> {
      * Returns cell comment for the specified row and column
      *
      * @return cell comment or <code>null</code> if not found
-     * @deprecated as of 2015-11-23 (circa POI 3.14beta1). Use {@link #getCellComment(CellReference)} instead.
+     * @deprecated as of 2015-11-23 (circa POI 3.14beta1). Use {@link #getCellComment(CellAddress)} instead.
      */
     Comment getCellComment(int row, int column);
     
index 64554c4aa50adc8f7a2c71c5cc032e654e27a411..c232286881d49cebd6d1ca8d1bffaea2e713a290 100644 (file)
@@ -1324,7 +1324,7 @@ public class SXSSFSheet implements Sheet, Cloneable
      * Returns cell comment for the specified row and column
      *
      * @return cell comment or <code>null</code> if not found
-     * @deprecated as of 2015-11-23 (circa POI 3.14beta1). Use {@link #getCellComment(CellReference)} instead.
+     * @deprecated as of 2015-11-23 (circa POI 3.14beta1). Use {@link #getCellComment(CellAddress)} instead.
      */
     @Override
     public XSSFComment getCellComment(int row, int column)
index b2a4d9483b9ac72f578622e22ae1a3d5262b60a7..89b7b2d3d094f09b2b42d1d4526e2b8b232ac676 100644 (file)
@@ -684,10 +684,10 @@ public class XSSFSheet extends POIXMLDocumentPart implements Sheet {
 
     /**
      * Return cell comment at row, column, if one exists. Otherwise returns null.
-     * @row the row where the comment is located
-     * @column the column where the comment is located
+     * @param row the row where the comment is located
+     * @param column the column where the comment is located
      * @return the cell comment, if one exists. Otherwise return null.
-     * @deprecated as of 2015-11-23 (circa POI 3.14beta1). Use {@link #getCellComment(CellReference)} instead.
+     * @deprecated as of 2015-11-23 (circa POI 3.14beta1). Use {@link #getCellComment(CellAddress)} instead.
      */
     @Override
     public XSSFComment getCellComment(int row, int column) {