]> source.dussan.org Git - poi.git/commitdiff
fix javadocs errors
authorJaven O'Neal <onealj@apache.org>
Fri, 4 Dec 2015 07:20:36 +0000 (07:20 +0000)
committerJaven O'Neal <onealj@apache.org>
Fri, 4 Dec 2015 07:20:36 +0000 (07:20 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1717907 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/poi/ss/usermodel/Cell.java
src/java/org/apache/poi/ss/usermodel/Sheet.java

index ca7738a32a65c04e043343d87ddfede237ccfdf8..1c50006391a0d60f0c22e4cda83f0c20eb3dddd7 100644 (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();
 
index aa37943327c2c397c8cc603fa6f994abba4ba856..055072d26289e49201aeb379d6331ff978b10d10 100644 (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);
 }