bug 59873: javadoc fix

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1753043 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Javen O'Neal 2016-07-17 09:48:36 +00:00
parent 4d33ceffb1
commit 7637cdc080
3 changed files with 10 additions and 5 deletions

View 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
*/

View 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>,

View 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;