fix javadoc warnings from r1715839 bug 58365

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1715987 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Javen O'Neal 2015-11-23 23:34:33 +00:00
parent 203358443e
commit 34886a6c3f
4 changed files with 6 additions and 6 deletions

View 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) {

View 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);

View 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)

View 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) {