diff options
Diffstat (limited to 'src/java/org/apache/fop/area/RegionReference.java')
-rw-r--r-- | src/java/org/apache/fop/area/RegionReference.java | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/java/org/apache/fop/area/RegionReference.java b/src/java/org/apache/fop/area/RegionReference.java index cadf27846..6632cb732 100644 --- a/src/java/org/apache/fop/area/RegionReference.java +++ b/src/java/org/apache/fop/area/RegionReference.java @@ -66,6 +66,8 @@ public class RegionReference extends Area implements Cloneable { // the list of block areas from the static flow private List blocks = new ArrayList(); + private int bpd; + /** * Create a new region reference area. * @@ -125,6 +127,24 @@ public class RegionReference extends Area implements Cloneable { } /** + * Set the block-progression-dimension. + * + * @return the footnote area + */ + public void setBPD(int bpd) { + this.bpd = bpd; + } + + /** + * Set the block-progression-dimension. + * + * @return the footnote area + */ + public int getBPD() { + return bpd; + } + + /** * Clone this region. * This is used when cloning the page by the page master. * The blocks are not copied since the master will have no blocks. |