aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/java/org/apache/poi/hssf/usermodel/HSSFSheet.java2
-rw-r--r--src/java/org/apache/poi/ss/usermodel/Sheet.java2
-rw-r--r--src/ooxml/java/org/apache/poi/xssf/streaming/SXSSFSheet.java2
-rw-r--r--src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFSheet.java6
4 files changed, 6 insertions, 6 deletions
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 <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) {
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<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);
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 <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)
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) {