aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/poi/sl
diff options
context:
space:
mode:
authorDominik Stadler <centic@apache.org>2018-12-25 10:00:21 +0000
committerDominik Stadler <centic@apache.org>2018-12-25 10:00:21 +0000
commitaccfb5a678dc1d4ca224659f0443ce2b9b0de1e5 (patch)
treea89fb585f282322e10bb2616fd4983b8f4a339c5 /src/java/org/apache/poi/sl
parent49f4ad6aba1afdcdf95845165501d66a87d429ec (diff)
downloadpoi-accfb5a678dc1d4ca224659f0443ce2b9b0de1e5.tar.gz
poi-accfb5a678dc1d4ca224659f0443ce2b9b0de1e5.zip
JavaDoc fixes/additions and some IDE warnings removed
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1849718 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/poi/sl')
-rw-r--r--src/java/org/apache/poi/sl/draw/geom/PathCommand.java14
-rw-r--r--src/java/org/apache/poi/sl/usermodel/TextParagraph.java20
2 files changed, 18 insertions, 16 deletions
diff --git a/src/java/org/apache/poi/sl/draw/geom/PathCommand.java b/src/java/org/apache/poi/sl/draw/geom/PathCommand.java
index 61129f1ae1..76a53e7de2 100644
--- a/src/java/org/apache/poi/sl/draw/geom/PathCommand.java
+++ b/src/java/org/apache/poi/sl/draw/geom/PathCommand.java
@@ -24,12 +24,14 @@ import java.awt.geom.Path2D;
/**
* A path command in DrawingML. One of:
*
- * <li>arcTo
- * <li>moveTo
- * <li>lineTo
- * <li>cubicBezTo
- * <li>quadBezTo
- * <li>close
+ *<ul>
+ * <li>arcTo</li>
+ * <li>moveTo/li>
+ * <li>lineTo/li>
+ * <li>cubicBezTo/li>
+ * <li>quadBezTo/li>
+ * <li>close/li>
+ * </ul>
*/
public interface PathCommand {
/**
diff --git a/src/java/org/apache/poi/sl/usermodel/TextParagraph.java b/src/java/org/apache/poi/sl/usermodel/TextParagraph.java
index 0f6a25b9cc..354b357b94 100644
--- a/src/java/org/apache/poi/sl/usermodel/TextParagraph.java
+++ b/src/java/org/apache/poi/sl/usermodel/TextParagraph.java
@@ -146,8 +146,8 @@ public interface TextParagraph<
* The amount of vertical white space before the paragraph
* This may be specified in two different ways, percentage spacing and font point spacing:
* <p>
- * If spaceBefore >= 0, then space is a percentage of normal line height.
- * If spaceBefore < 0, the absolute value in points
+ * If spaceBefore &gt;= 0, then space is a percentage of normal line height.
+ * If spaceBefore &lt; 0, the absolute value in points
* </p>
*
* @return the vertical white space before the paragraph, or null if unset
@@ -158,8 +158,8 @@ public interface TextParagraph<
* Set the amount of vertical white space that will be present before the paragraph.
* This space is specified in either percentage or points:
* <p>
- * If spaceBefore >= 0, then space is a percentage of normal line height.
- * If spaceBefore < 0, the absolute value of linespacing is the spacing in points
+ * If spaceBefore &gt;= 0, then space is a percentage of normal line height.
+ * If spaceBefore &lt; 0, the absolute value of linespacing is the spacing in points
* </p>
* Examples:
* <pre><code>
@@ -179,8 +179,8 @@ public interface TextParagraph<
* The amount of vertical white space after the paragraph
* This may be specified in two different ways, percentage spacing and font point spacing:
* <p>
- * If spaceBefore >= 0, then space is a percentage of normal line height.
- * If spaceBefore < 0, the absolute value of linespacing is the spacing in points
+ * If spaceBefore &gt;= 0, then space is a percentage of normal line height.
+ * If spaceBefore &lt; 0, the absolute value of linespacing is the spacing in points
* </p>
*
* @return the vertical white space after the paragraph or null, if unset
@@ -191,8 +191,8 @@ public interface TextParagraph<
* Set the amount of vertical white space that will be present after the paragraph.
* This space is specified in either percentage or points:
* <p>
- * If spaceAfter >= 0, then space is a percentage of normal line height.
- * If spaceAfter < 0, the absolute value of linespacing is the spacing in points
+ * If spaceAfter &gt;= 0, then space is a percentage of normal line height.
+ * If spaceAfter &lt; 0, the absolute value of linespacing is the spacing in points
* </p>
* Examples:
* <pre><code>
@@ -283,8 +283,8 @@ public interface TextParagraph<
* This element specifies the vertical line spacing that is to be used within a paragraph.
* This may be specified in two different ways, percentage spacing and font point spacing:
* <p>
- * If linespacing >= 0, then linespacing is a percentage of normal line height
- * If linespacing < 0, the absolute value of linespacing is the spacing in points
+ * If linespacing &gt;= 0, then linespacing is a percentage of normal line height
+ * If linespacing &lt; 0, the absolute value of linespacing is the spacing in points
* </p>
* Examples:
* <pre><code>