]> source.dussan.org Git - poi.git/commitdiff
missing @since annotations
authorPJ Fanning <fanningpj@apache.org>
Sat, 20 Jul 2019 12:11:07 +0000 (12:11 +0000)
committerPJ Fanning <fanningpj@apache.org>
Sat, 20 Jul 2019 12:11:07 +0000 (12:11 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1863476 13f79535-47bb-0310-9956-ffa450edef68

src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFParagraph.java
src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFPicture.java
src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFRun.java

index 4aec6eba84a5860c3d835f38c47aa5ea8e9e8241..a0a9f2102c4b9bd9fdab915b6db230fc1e94aded 100644 (file)
@@ -1444,6 +1444,7 @@ public class XWPFParagraph implements IBodyElement, IRunBody, ISDTContents, Para
      * Appends a new hyperlink run to this paragraph
      *
      * @return a new hyperlink run
+     * @since POI 4.1.1
      */
     public XWPFHyperlinkRun createHyperlinkRun(String uri) {
         // Create a relationship ID for this link. 
index a64eabecba81cb73199ecd2ca0848bd118f40dc0..f46d2cd1582383b565b1e98486b34eea14597db1 100644 (file)
@@ -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() {
         return Units.toPoints(ctPic.getSpPr().getXfrm().getExt().getCx());
@@ -88,6 +90,8 @@ public class XWPFPicture {
    
     /**
      * Returns the depth of the picture (in points). 
+     *
+     * @since POI 4.1.1
      */
     public double getDepth() {
         return Units.toPoints(ctPic.getSpPr().getXfrm().getExt().getCy());
index bfeb12d725d55fbd9abf7b7d7c66f305ad6dd68f..cfe92cbcbcd4dd027748342cd5f423302bd8c98d 100644 (file)
@@ -1203,6 +1203,7 @@ public class XWPFRun implements ISDTContents, IRunElement, CharacterRun {
      * 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").
+     * @since POI 4.1.1
      */
     public void setStyle(String styleId) {
         CTRPr pr = getCTR().getRPr();