]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Accessors for break-* on table-row.
authorJeremias Maerki <jeremias@apache.org>
Wed, 22 Jun 2005 14:51:39 +0000 (14:51 +0000)
committerJeremias Maerki <jeremias@apache.org>
Wed, 22 Jun 2005 14:51:39 +0000 (14:51 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198761 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/fo/flow/TableRow.java

index 0c50edcf37ad580fd1ca36277df0d13f34b9826d..02afd2a26e8feeb19f4139842598835cb411560c 100644 (file)
@@ -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;