]> source.dussan.org Git - poi.git/commitdiff
bug 59872: add @since annotation to Sheet#getHyperlink(CellAddress)
authorJaven O'Neal <onealj@apache.org>
Sun, 17 Jul 2016 05:47:03 +0000 (05:47 +0000)
committerJaven O'Neal <onealj@apache.org>
Sun, 17 Jul 2016 05:47:03 +0000 (05:47 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1753015 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/poi/hssf/usermodel/HSSFSheet.java
src/java/org/apache/poi/ss/usermodel/Sheet.java
src/ooxml/java/org/apache/poi/xssf/streaming/SXSSFSheet.java
src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFSheet.java

index e9e3cf6f75b44dd54d70404549c14597bd3530bc..5360fe600ecf1743bb9f9678f5117116d37e0927 100644 (file)
@@ -2220,6 +2220,7 @@ public final class HSSFSheet implements org.apache.poi.ss.usermodel.Sheet {
      *
      * @param addr The address of the cell containing the hyperlink
      * @return hyperlink if there is a hyperlink anchored at {@code addr}; otherwise returns {@code null}
+     * @since POI 3.15 beta 3
      */
     @Override
     public HSSFHyperlink getHyperlink(CellAddress addr) {
index 3d449348ec7d7116e1d19618fa32c2b3cd0122fd..4c171ff2ccd501a399a5701a9744907361f52b93 100644 (file)
@@ -1163,6 +1163,7 @@ public interface Sheet extends Iterable<Row> {
      *
      * @param addr The address of the cell containing the hyperlink
      * @return hyperlink if there is a hyperlink anchored at {@code addr}; otherwise returns {@code null}
+     * @since POI 3.15 beta 3
      */
     public Hyperlink getHyperlink(CellAddress addr);
     
index eeb321d924c0f6b07a8586f7a1818b9f8dec7d7f..e217dd2e6c7032e4f1536dee1a978f93a80a7ad4 100644 (file)
@@ -1670,6 +1670,7 @@ public class SXSSFSheet implements Sheet
      *
      * @param addr The address of the cell containing the hyperlink
      * @return hyperlink if there is a hyperlink anchored at {@code addr}; otherwise returns {@code null}
+     * @since POI 3.15 beta 3
      */
     @Override
     public XSSFHyperlink getHyperlink(CellAddress addr) {
index 771986b263f7a0484c62273d9bd7bd9f633bb2a4..2271e0b4d841a86d780dcfdcfc06db6358d7f419 100644 (file)
@@ -814,6 +814,7 @@ public class XSSFSheet extends POIXMLDocumentPart implements Sheet {
      *
      * @param addr The address of the cell containing the hyperlink
      * @return hyperlink if there is a hyperlink anchored at {@code addr}; otherwise returns {@code null}
+     * @since POI 3.15 beta 3
      */
     @Override
     public XSSFHyperlink getHyperlink(CellAddress addr) {