aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/fop/fo/flow
diff options
context:
space:
mode:
authorAndreas L. Delmelle <adelmelle@apache.org>2015-05-15 10:22:23 +0000
committerAndreas L. Delmelle <adelmelle@apache.org>2015-05-15 10:22:23 +0000
commit02e3b4c195da6cce9ecabc71a885283b575856e4 (patch)
treec4246ce8658a4416cecbe4ab4e4a6b443586b8c1 /src/java/org/apache/fop/fo/flow
parente1a9121307f5795cd91e04bc82a226e5235b379e (diff)
downloadxmlgraphics-fop-02e3b4c195da6cce9ecabc71a885283b575856e4.tar.gz
xmlgraphics-fop-02e3b4c195da6cce9ecabc71a885283b575856e4.zip
Minor fix to make footnotes easier to track while debugging. Added disabled layout test as a reminder for the missing piece.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1679533 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop/fo/flow')
-rw-r--r--src/java/org/apache/fop/fo/flow/Footnote.java2
-rw-r--r--src/java/org/apache/fop/fo/flow/FootnoteBody.java2
2 files changed, 4 insertions, 0 deletions
diff --git a/src/java/org/apache/fop/fo/flow/Footnote.java b/src/java/org/apache/fop/fo/flow/Footnote.java
index e997cee67..521e8b081 100644
--- a/src/java/org/apache/fop/fo/flow/Footnote.java
+++ b/src/java/org/apache/fop/fo/flow/Footnote.java
@@ -52,11 +52,13 @@ public class Footnote extends FObj implements CommonAccessibilityHolder {
/** {@inheritDoc} */
public void bind(PropertyList pList) throws FOPException {
+ super.bind(pList);
commonAccessibility = CommonAccessibility.getInstance(pList);
}
/** {@inheritDoc} */
public void startOfNode() throws FOPException {
+ super.startOfNode();
getFOEventHandler().startFootnote(this);
}
diff --git a/src/java/org/apache/fop/fo/flow/FootnoteBody.java b/src/java/org/apache/fop/fo/flow/FootnoteBody.java
index af2bc2bcf..ab2434c47 100644
--- a/src/java/org/apache/fop/fo/flow/FootnoteBody.java
+++ b/src/java/org/apache/fop/fo/flow/FootnoteBody.java
@@ -50,11 +50,13 @@ public class FootnoteBody extends FObj implements CommonAccessibilityHolder {
/** {@inheritDoc} */
public void bind(PropertyList pList) throws FOPException {
+ super.bind(pList);
commonAccessibility = CommonAccessibility.getInstance(pList);
}
/** {@inheritDoc} */
public void startOfNode() throws FOPException {
+ super.startOfNode();
getFOEventHandler().startFootnoteBody(this);
}