diff options
author | PJ Fanning <fanningpj@apache.org> | 2019-04-05 09:18:26 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2019-04-05 09:18:26 +0000 |
commit | b523186038c119a2c4b5f1159e4cfb934d45c72b (patch) | |
tree | c52f9e30ddae6a4766bcc9e525923579bce1f181 /src | |
parent | 8a5bd2c774c597c6c6e9364fa3ac014f4ab46270 (diff) | |
download | poi-b523186038c119a2c4b5f1159e4cfb934d45c72b.tar.gz poi-b523186038c119a2c4b5f1159e4cfb934d45c72b.zip |
try to fix javadoc issues
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1856994 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src')
-rw-r--r-- | src/ooxml/java/org/apache/poi/xddf/usermodel/text/XDDFTextParagraph.java | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/ooxml/java/org/apache/poi/xddf/usermodel/text/XDDFTextParagraph.java b/src/ooxml/java/org/apache/poi/xddf/usermodel/text/XDDFTextParagraph.java index 0b595241f5..1e4182d304 100644 --- a/src/ooxml/java/org/apache/poi/xddf/usermodel/text/XDDFTextParagraph.java +++ b/src/ooxml/java/org/apache/poi/xddf/usermodel/text/XDDFTextParagraph.java @@ -237,7 +237,8 @@ public class XDDFTextParagraph { * <dt>Minimum inclusive =</dt> * <dd>-4032</dd> * <dt>Maximum inclusive =</dt> - * <dd>4032</dd></dt> + * <dd>4032</dd> + * </dl> */ public void setIndentation(Double points) { if (points != null || _p.isSetPPr()) { @@ -267,7 +268,8 @@ public class XDDFTextParagraph { * <dt>Minimum inclusive =</dt> * <dd>0</dd> * <dt>Maximum inclusive =</dt> - * <dd>4032</dd></dt> + * <dd>4032</dd> + * </dl> */ public void setMarginLeft(Double points) { if (points != null || _p.isSetPPr()) { @@ -297,7 +299,8 @@ public class XDDFTextParagraph { * <dt>Minimum inclusive =</dt> * <dd>0</dd> * <dt>Maximum inclusive =</dt> - * <dd>4032</dd></dt> + * <dd>4032</dd> + * </dl> */ public void setMarginRight(Double points) { if (points != null || _p.isSetPPr()) { |