]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Additional accessors.
authorJeremias Maerki <jeremias@apache.org>
Wed, 23 Mar 2005 13:50:16 +0000 (13:50 +0000)
committerJeremias Maerki <jeremias@apache.org>
Wed, 23 Mar 2005 13:50:16 +0000 (13:50 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/Temp_KnuthStylePageBreaking@198537 13f79535-47bb-0310-9956-ffa450edef68

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

index 44ee433395ee0bc1c80871c40ad2e74b6b0ac9d9..97cba06f156ac6d47dee6ed1830871d9c6401134 100644 (file)
@@ -285,20 +285,31 @@ public class Table extends FObj {
         return commonBorderPaddingBackground;
     }
 
-    /**
-     * @return the "break-after" property.
-     */
+    /** @return the "break-after" property. */
     public int getBreakAfter() {
         return breakAfter;
     }
 
-    /**
-     * @return the "break-before" property.
-     */
+    /** @return the "break-before" property. */
     public int getBreakBefore() {
         return breakBefore;
     }
-    
+
+    /** @return the "keep-with-next" property.  */
+    public KeepProperty getKeepWithNext() {
+        return keepWithNext;
+    }
+
+    /** @return the "keep-with-previous" property.  */
+    public KeepProperty getKeepWithPrevious() {
+        return keepWithPrevious;
+    }
+
+    /** @return the "keep-together" property.  */
+    public KeepProperty getKeepTogether() {
+        return keepTogether;
+    }
+
     /** @return the "border-collapse" property. */
     public int getBorderCollapse() {
         return borderCollapse;