fix javadocs errors

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1717907 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Javen O'Neal 2015-12-04 07:20:36 +00:00
parent 83a2f13494
commit b6e5801a1c
2 changed files with 4 additions and 4 deletions

View File

@ -354,7 +354,7 @@ public interface Cell {
* Gets the address of this cell
*
* @return <code>A1</code> style address of this cell
* @since 3.14beta2
* @since 3.14beta1
*/
CellAddress getAddress();

View File

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