]> source.dussan.org Git - poi.git/commitdiff
add javadocs
authorSergey Vladimirov <sergey@apache.org>
Thu, 7 Jul 2011 08:24:22 +0000 (08:24 +0000)
committerSergey Vladimirov <sergey@apache.org>
Thu, 7 Jul 2011 08:24:22 +0000 (08:24 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1143706 13f79535-47bb-0310-9956-ffa450edef68

src/scratchpad/src/org/apache/poi/hwpf/usermodel/Paragraph.java

index 35b71966cc95975067b52033777308d6af2f6b7e..d8a165acd178ab2facddd4de6dc2d3cd3f559b8b 100644 (file)
@@ -124,6 +124,10 @@ public class Paragraph extends Range implements Cloneable {
     return _props.getFInTable() != 0;
   }
 
+  /**
+   * @return <tt>true</tt>, if table trailer paragraph (last in table row),
+   *         <tt>false</tt> otherwise
+   */
   public boolean isTableRowEnd()
   {
     return _props.getFTtp() != 0 || _props.getFTtpEmbedded() != 0;
@@ -134,10 +138,14 @@ public class Paragraph extends Range implements Cloneable {
     return _props.getItap();
   }
 
-  public boolean isEmbeddedCellMark()
-  {
-    return _props.getFInnerTableCell() != 0;
-  }
+    /**
+     * @return <tt>true</tt>, if the end of paragraph mark is really an end of
+     *         cell mark for a nested table cell, <tt>false</tt> otherwise
+     */
+    public boolean isEmbeddedCellMark()
+    {
+        return _props.getFInnerTableCell() != 0;
+    }
 
   public int getJustification()
   {