From 7fecf6931aa8013a569926ffbcc43b33a95724d0 Mon Sep 17 00:00:00 2001 From: arved Date: Wed, 27 Dec 2000 03:50:08 +0000 Subject: [PATCH] Better support for breaks git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193922 13f79535-47bb-0310-9956-ffa450edef68 --- src/org/apache/fop/fo/Status.java | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/org/apache/fop/fo/Status.java b/src/org/apache/fop/fo/Status.java index 2f75c884c..5fdb0566d 100644 --- a/src/org/apache/fop/fo/Status.java +++ b/src/org/apache/fop/fo/Status.java @@ -64,7 +64,8 @@ public class Status { public final static int FORCE_PAGE_BREAK = 4; public final static int FORCE_PAGE_BREAK_EVEN = 5; public final static int FORCE_PAGE_BREAK_ODD = 6; - public final static int KEEP_WITH_NEXT = 7; + public final static int FORCE_COLUMN_BREAK = 7; + public final static int KEEP_WITH_NEXT = 8; public Status(int code) { this.code = code; @@ -81,4 +82,10 @@ public class Status { public boolean laidOutNone() { return (this.code == AREA_FULL_NONE); } + + public boolean isPageBreak() { + return ((this.code == FORCE_PAGE_BREAK) + || (this.code == FORCE_PAGE_BREAK_EVEN) + || (this.code == FORCE_PAGE_BREAK_ODD)); + } } -- 2.39.5