diff options
Diffstat (limited to 'src/java/org/apache/fop/fo/flow/TableCell.java')
-rw-r--r-- | src/java/org/apache/fop/fo/flow/TableCell.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/java/org/apache/fop/fo/flow/TableCell.java b/src/java/org/apache/fop/fo/flow/TableCell.java index 2f417cc15..9853a54ff 100644 --- a/src/java/org/apache/fop/fo/flow/TableCell.java +++ b/src/java/org/apache/fop/fo/flow/TableCell.java @@ -298,6 +298,11 @@ public class TableCell extends FObj { return Math.max(columnNumber.getValue(), 0); } + /** @return true if "empty-cells" is "show" */ + public boolean showEmptyCells() { + return (this.emptyCells == EN_SHOW); + } + /** * @return the "id" property. */ |