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:
parent
4d33ceffb1
commit
7637cdc080
@ -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
|
||||
*/
|
||||
|
@ -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>,
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user