aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKaren Lease <klease@apache.org>2001-01-02 21:42:13 +0000
committerKaren Lease <klease@apache.org>2001-01-02 21:42:13 +0000
commit4e027ccb54f9b65c4fb58ebde52e2815b535aeb3 (patch)
tree3d681e73586e990e6a12f845fe60c5e130ba15ec /src
parentef50b3925624a844a1a7d053201496857d8b813e (diff)
downloadxmlgraphics-fop-4e027ccb54f9b65c4fb58ebde52e2815b535aeb3.tar.gz
xmlgraphics-fop-4e027ccb54f9b65c4fb58ebde52e2815b535aeb3.zip
Flow returns true for generatesReferenceAreas (needed for writing-mode-relative caclulation)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193943 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src')
-rw-r--r--src/org/apache/fop/fo/flow/Flow.java14
1 files changed, 10 insertions, 4 deletions
diff --git a/src/org/apache/fop/fo/flow/Flow.java b/src/org/apache/fop/fo/flow/Flow.java
index f754d4d36..91b69503b 100644
--- a/src/org/apache/fop/fo/flow/Flow.java
+++ b/src/org/apache/fop/fo/flow/Flow.java
@@ -237,8 +237,14 @@ public class Flow extends FObj {
return "fo:flow";
}
- public Status getStatus()
- {
- return _status;
- }
+ public Status getStatus()
+ {
+ return _status;
+ }
+
+
+ public boolean generatesReferenceAreas() {
+ return true;
+ }
+
}