mirror of https://github.com/apache/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
This commit is contained in:
parent
203358443e
commit
34886a6c3f
|
@ -2046,7 +2046,7 @@ public final class HSSFSheet implements org.apache.poi.ss.usermodel.Sheet {
|
||||||
* Returns cell comment for the specified row and column
|
* Returns cell comment for the specified row and column
|
||||||
*
|
*
|
||||||
* @return cell comment or <code>null</code> if not found
|
* @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
|
@Override
|
||||||
public HSSFComment getCellComment(int row, int column) {
|
public HSSFComment getCellComment(int row, int column) {
|
||||||
|
|
|
@ -893,7 +893,7 @@ public interface Sheet extends Iterable<Row> {
|
||||||
* Returns cell comment for the specified row and column
|
* Returns cell comment for the specified row and column
|
||||||
*
|
*
|
||||||
* @return cell comment or <code>null</code> if not found
|
* @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);
|
Comment getCellComment(int row, int column);
|
||||||
|
|
||||||
|
|
|
@ -1324,7 +1324,7 @@ public class SXSSFSheet implements Sheet, Cloneable
|
||||||
* Returns cell comment for the specified row and column
|
* Returns cell comment for the specified row and column
|
||||||
*
|
*
|
||||||
* @return cell comment or <code>null</code> if not found
|
* @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
|
@Override
|
||||||
public XSSFComment getCellComment(int row, int column)
|
public XSSFComment getCellComment(int row, int column)
|
||||||
|
|
|
@ -684,10 +684,10 @@ public class XSSFSheet extends POIXMLDocumentPart implements Sheet {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return cell comment at row, column, if one exists. Otherwise returns null.
|
* Return cell comment at row, column, if one exists. Otherwise returns null.
|
||||||
* @row the row where the comment is located
|
* @param row the row where the comment is located
|
||||||
* @column the column where the comment is located
|
* @param column the column where the comment is located
|
||||||
* @return the cell comment, if one exists. Otherwise return null.
|
* @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
|
@Override
|
||||||
public XSSFComment getCellComment(int row, int column) {
|
public XSSFComment getCellComment(int row, int column) {
|
||||||
|
|
Loading…
Reference in New Issue