]> source.dussan.org Git - poi.git/commitdiff
bug 59873: javadoc fix
authorJaven O'Neal <onealj@apache.org>
Sun, 17 Jul 2016 09:48:36 +0000 (09:48 +0000)
committerJaven O'Neal <onealj@apache.org>
Sun, 17 Jul 2016 09:48:36 +0000 (09:48 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1753043 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/poi/hssf/usermodel/HSSFHyperlink.java
src/java/org/apache/poi/sl/usermodel/Hyperlink.java
src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFHyperlink.java

index d91498679cab7cf79d4c58c5d14f71c06237fe4e..1847bfc0fb2493684c78d67f1ecdd37e7d2d02e1 100644 (file)
@@ -39,7 +39,8 @@ public class HSSFHyperlink implements Hyperlink {
     /**
      * Construct a new hyperlink
      * 
-     * This method is internal to be used only by {@link HSSFCreationHelper#createHyperlink(int)}
+     * This method is internal to be used only by
+     * {@link HSSFCreationHelper#createHyperlink(int)}.
      *
      * @param type the type of hyperlink to create
      * @deprecated POI 3.15 beta 3
@@ -53,7 +54,8 @@ public class HSSFHyperlink implements Hyperlink {
     /**
      * Construct a new hyperlink
      * 
-     * This method is internal to be used only by {@link HSSFCreationHelper#createHyperlink(int)}
+     * This method is internal to be used only by
+     * {@link HSSFCreationHelper#createHyperlink(HyperlinkType)}.
      *
      * @param type the type of hyperlink to create
      */
index 50500d04bcd50cf705e0500603c4c76cce39e111..3c2a9fc2860d0975824c54a00af47033f5dbe4e4 100644 (file)
@@ -19,6 +19,7 @@ package org.apache.poi.sl.usermodel;
 
 /**
  * A PowerPoint hyperlink
+ * @since POI 3.14 beta 2
  */
 public interface Hyperlink<
     S extends Shape<S,P>,
index 869159eb99bf1a3065e5315294bf62b6878c7130..1f1c8421fd83b5131abcdf167dc0f962cb28f77e 100644 (file)
@@ -39,7 +39,8 @@ public class XSSFHyperlink implements Hyperlink {
     private String _location; //what the hyperlink refers to
 
     /**
-     * Create a new XSSFHyperlink. This method is protected to be used only by {@link XSSFCreationHelper#createHyperlink(int)}
+     * Create a new XSSFHyperlink. This method is protected to be used only by
+     * {@link XSSFCreationHelper#createHyperlink(int)}.
      *
      * @param type - the type of hyperlink to create, see {@link Hyperlink}
      * @deprecated POI 3.15 beta 3. Use {@link #XSSFHyperlink(HyperlinkType)} instead.
@@ -49,9 +50,10 @@ public class XSSFHyperlink implements Hyperlink {
     }
     
     /**
-     * Create a new XSSFHyperlink. This method is protected to be used only by {@link XSSFCreationHelper#createHyperlink(int)}
+     * Create a new XSSFHyperlink. This method is protected to be used only by
+     * {@link XSSFCreationHelper#createHyperlink(HyperlinkType)}.
      *
-     * @param type - the type of hyperlink to create, see {@link Hyperlink}
+     * @param type - the type of hyperlink to create
      */
     protected XSSFHyperlink(HyperlinkType type) {
         _type = type;