mirror of https://github.com/apache/poi.git
missing @since annotations
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1863476 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
4fbad5c3f7
commit
cf1eb05304
|
@ -1444,6 +1444,7 @@ public class XWPFParagraph implements IBodyElement, IRunBody, ISDTContents, Para
|
||||||
* Appends a new hyperlink run to this paragraph
|
* Appends a new hyperlink run to this paragraph
|
||||||
*
|
*
|
||||||
* @return a new hyperlink run
|
* @return a new hyperlink run
|
||||||
|
* @since POI 4.1.1
|
||||||
*/
|
*/
|
||||||
public XWPFHyperlinkRun createHyperlinkRun(String uri) {
|
public XWPFHyperlinkRun createHyperlinkRun(String uri) {
|
||||||
// Create a relationship ID for this link.
|
// Create a relationship ID for this link.
|
||||||
|
|
|
@ -80,7 +80,9 @@ public class XWPFPicture {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the width of the picture (in points).
|
* Returns the width of the picture (in points).
|
||||||
|
*
|
||||||
|
* @since POI 4.1.1
|
||||||
*/
|
*/
|
||||||
public double getWidth() {
|
public double getWidth() {
|
||||||
return Units.toPoints(ctPic.getSpPr().getXfrm().getExt().getCx());
|
return Units.toPoints(ctPic.getSpPr().getXfrm().getExt().getCx());
|
||||||
|
@ -88,6 +90,8 @@ public class XWPFPicture {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the depth of the picture (in points).
|
* Returns the depth of the picture (in points).
|
||||||
|
*
|
||||||
|
* @since POI 4.1.1
|
||||||
*/
|
*/
|
||||||
public double getDepth() {
|
public double getDepth() {
|
||||||
return Units.toPoints(ctPic.getSpPr().getXfrm().getExt().getCy());
|
return Units.toPoints(ctPic.getSpPr().getXfrm().getExt().getCy());
|
||||||
|
|
|
@ -1203,6 +1203,7 @@ public class XWPFRun implements ISDTContents, IRunElement, CharacterRun {
|
||||||
* Set the style ID for the run.
|
* Set the style ID for the run.
|
||||||
*
|
*
|
||||||
* @param styleId ID (not name) of the style to set for the run, e.g. "BoldItalic" (not "Bold Italic").
|
* @param styleId ID (not name) of the style to set for the run, e.g. "BoldItalic" (not "Bold Italic").
|
||||||
|
* @since POI 4.1.1
|
||||||
*/
|
*/
|
||||||
public void setStyle(String styleId) {
|
public void setStyle(String styleId) {
|
||||||
CTRPr pr = getCTR().getRPr();
|
CTRPr pr = getCTR().getRPr();
|
||||||
|
|
Loading…
Reference in New Issue