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:
parent
44c9afd31d
commit
83a2f13494
@ -2554,9 +2554,9 @@ public final class HSSFSheet implements org.apache.poi.ss.usermodel.Sheet {
|
|||||||
* {@inheritDoc}
|
* {@inheritDoc}
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public void setActiveCell(CellAddress addr) {
|
public void setActiveCell(CellAddress address) {
|
||||||
int row = addr.getRow();
|
int row = address.getRow();
|
||||||
short col = (short) addr.getColumn();
|
short col = (short) address.getColumn();
|
||||||
_sheet.setActiveCellRow(row);
|
_sheet.setActiveCellRow(row);
|
||||||
_sheet.setActiveCellCol(col);
|
_sheet.setActiveCellCol(col);
|
||||||
}
|
}
|
||||||
|
@ -1130,8 +1130,8 @@ public interface Sheet extends Iterable<Row> {
|
|||||||
/**
|
/**
|
||||||
* Sets location of the active cell
|
* 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
|
* @since 3.14beta2
|
||||||
*/
|
*/
|
||||||
public void setActiveCell(CellAddress addr);
|
public void setActiveCell(CellAddress address);
|
||||||
}
|
}
|
||||||
|
@ -1887,7 +1887,7 @@ public class SXSSFSheet implements Sheet, Cloneable
|
|||||||
* {@inheritDoc}
|
* {@inheritDoc}
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public void setActiveCell(CellAddress addr) {
|
public void setActiveCell(CellAddress address) {
|
||||||
_sh.setActiveCell(addr);
|
_sh.setActiveCell(address);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user