Browse Source

fix javadocs errors

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1717907 13f79535-47bb-0310-9956-ffa450edef68
tags/REL_3_14_BETA1
Javen O'Neal 8 years ago
parent
commit
a2d55ee784

+ 1
- 1
src/java/org/apache/poi/ss/usermodel/Cell.java 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();


+ 3
- 3
src/java/org/apache/poi/ss/usermodel/Sheet.java 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);
}

Loading…
Cancel
Save