From: Javen O'Neal Date: Mon, 23 Nov 2015 23:34:33 +0000 (+0000) Subject: fix javadoc warnings from r1715839 bug 58365 X-Git-Tag: REL_3_14_BETA1~101 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=34886a6c3f8821aa64e74bb33863538683b38919;p=poi.git fix javadoc warnings from r1715839 bug 58365 git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1715987 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/java/org/apache/poi/hssf/usermodel/HSSFSheet.java b/src/java/org/apache/poi/hssf/usermodel/HSSFSheet.java index 7e22d7cf26..f1a1af7b7b 100644 --- a/src/java/org/apache/poi/hssf/usermodel/HSSFSheet.java +++ b/src/java/org/apache/poi/hssf/usermodel/HSSFSheet.java @@ -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 null 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) { diff --git a/src/java/org/apache/poi/ss/usermodel/Sheet.java b/src/java/org/apache/poi/ss/usermodel/Sheet.java index 036fc279a8..5a9b05fb57 100644 --- a/src/java/org/apache/poi/ss/usermodel/Sheet.java +++ b/src/java/org/apache/poi/ss/usermodel/Sheet.java @@ -893,7 +893,7 @@ public interface Sheet extends Iterable { * Returns cell comment for the specified row and column * * @return cell comment or null 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); diff --git a/src/ooxml/java/org/apache/poi/xssf/streaming/SXSSFSheet.java b/src/ooxml/java/org/apache/poi/xssf/streaming/SXSSFSheet.java index 64554c4aa5..c232286881 100644 --- a/src/ooxml/java/org/apache/poi/xssf/streaming/SXSSFSheet.java +++ b/src/ooxml/java/org/apache/poi/xssf/streaming/SXSSFSheet.java @@ -1324,7 +1324,7 @@ public class SXSSFSheet implements Sheet, Cloneable * Returns cell comment for the specified row and column * * @return cell comment or null 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) diff --git a/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFSheet.java b/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFSheet.java index b2a4d9483b..89b7b2d3d0 100644 --- a/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFSheet.java +++ b/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFSheet.java @@ -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) {