aboutsummaryrefslogtreecommitdiffstats
path: root/src/org/apache/fop/fo/pagination/RegionBASE.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/org/apache/fop/fo/pagination/RegionBASE.java')
-rw-r--r--src/org/apache/fop/fo/pagination/RegionBASE.java9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/org/apache/fop/fo/pagination/RegionBASE.java b/src/org/apache/fop/fo/pagination/RegionBASE.java
index 62cf8d037..8a5f3c975 100644
--- a/src/org/apache/fop/fo/pagination/RegionBASE.java
+++ b/src/org/apache/fop/fo/pagination/RegionBASE.java
@@ -60,16 +60,25 @@ public abstract class RegionBASE extends Region {
private int extent;
+ /**
+ * @see org.apache.fop.fo.FONode#FONode(FONode)
+ */
protected RegionBASE(FONode parent) {
super(parent);
}
+ /**
+ * @see org.apache.fop.fo.FONode#end()
+ */
public void end() {
// The problem with this is that it might not be known yet....
// Supposing extent is calculated in terms of percentage
this.extent = this.properties.get("extent").getLength().getValue();
}
+ /**
+ * @see org.apache.fop.fo.pagination.Region#getExtent()
+ */
public int getExtent() {
return this.extent;
}