aboutsummaryrefslogtreecommitdiffstats
path: root/src/org/apache/fop/area/Footnote.java
diff options
context:
space:
mode:
authorKeiron Liddle <keiron@apache.org>2001-10-22 09:30:33 +0000
committerKeiron Liddle <keiron@apache.org>2001-10-22 09:30:33 +0000
commit52e85df344713f452e72db2232f1430747c88b24 (patch)
tree561246672d0d344fcfe95daa644080753dd343df /src/org/apache/fop/area/Footnote.java
parent7ae7d602161bd83182e064c81e4a79968b7ee0cc (diff)
downloadxmlgraphics-fop-52e85df344713f452e72db2232f1430747c88b24.tar.gz
xmlgraphics-fop-52e85df344713f452e72db2232f1430747c88b24.zip
new area tree and rendering stuff
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194519 13f79535-47bb-0310-9956-ffa450edef68
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;
+ }
+}