aboutsummaryrefslogtreecommitdiffstats
path: root/src/org/apache/fop/area/Footnote.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/org/apache/fop/area/Footnote.java')
-rw-r--r--src/org/apache/fop/area/Footnote.java33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/org/apache/fop/area/Footnote.java b/src/org/apache/fop/area/Footnote.java
new file mode 100644
index 000000000..1baf1502c
--- /dev/null
+++ b/src/org/apache/fop/area/Footnote.java
@@ -0,0 +1,33 @@
+/*
+ * $Id$
+ * Copyright (C) 2001 The Apache Software Foundation. All rights reserved.
+ * For details on use and redistribution please refer to the
+ * LICENSE file included with these sources.
+ */
+
+package org.apache.fop.area;
+
+import java.util.List;
+import java.util.ArrayList;
+
+// may combine with before float into a conditional area
+public class Footnote {
+ Block separator = null;
+
+ // footnote has an optional separator
+ // and a list of sub block areas that can be added/removed
+
+ // this is the relative position of the footnote inside
+ // the body region
+ int top;
+
+ ArrayList blocks = null;
+
+ public Block getSeparator() {
+ return separator;
+ }
+
+ public List getBlocks() {
+ return blocks;
+ }
+}