fix javadoc errors

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1717903 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Javen O'Neal 2015-12-04 07:10:26 +00:00
parent 44c9afd31d
commit 83a2f13494
3 changed files with 7 additions and 7 deletions

View File

@ -2554,9 +2554,9 @@ public final class HSSFSheet implements org.apache.poi.ss.usermodel.Sheet {
* {@inheritDoc}
*/
@Override
public void setActiveCell(CellAddress addr) {
int row = addr.getRow();
short col = (short) addr.getColumn();
public void setActiveCell(CellAddress address) {
int row = address.getRow();
short col = (short) address.getColumn();
_sheet.setActiveCellRow(row);
_sheet.setActiveCellCol(col);
}

View File

@ -1130,8 +1130,8 @@ public interface Sheet extends Iterable<Row> {
/**
* Sets location of the active cell
*
* @param cellRef the location of the active cell, e.g. <code>A1</code>.
* @param addr the location of the active cell, e.g. <code>A1</code>.
* @since 3.14beta2
*/
public void setActiveCell(CellAddress addr);
public void setActiveCell(CellAddress address);
}

View File

@ -1887,7 +1887,7 @@ public class SXSSFSheet implements Sheet, Cloneable
* {@inheritDoc}
*/
@Override
public void setActiveCell(CellAddress addr) {
_sh.setActiveCell(addr);
public void setActiveCell(CellAddress address) {
_sh.setActiveCell(address);
}
}