aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache
diff options
context:
space:
mode:
Diffstat (limited to 'src/java/org/apache')
-rw-r--r--src/java/org/apache/fop/fo/flow/TableRow.java10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/java/org/apache/fop/fo/flow/TableRow.java b/src/java/org/apache/fop/fo/flow/TableRow.java
index 0c50edcf3..02afd2a26 100644
--- a/src/java/org/apache/fop/fo/flow/TableRow.java
+++ b/src/java/org/apache/fop/fo/flow/TableRow.java
@@ -138,6 +138,16 @@ public class TableRow extends FObj {
return id;
}
+ /** @return the "break-after" property. */
+ public int getBreakAfter() {
+ return breakAfter;
+ }
+
+ /** @return the "break-before" property. */
+ public int getBreakBefore() {
+ return breakBefore;
+ }
+
/** @return the "keep-with-previous" property. */
public KeepProperty getKeepWithPrevious() {
return keepWithPrevious;