add javadocs

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1143706 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sergey Vladimirov 2011-07-07 08:24:22 +00:00
parent 8979236b05
commit b3def16e9a

View 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,6 +138,10 @@ public class Paragraph extends Range implements Cloneable {
return _props.getItap();
}
/**
* @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;