You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Footnote.java 750B

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. * $Id$
  3. * Copyright (C) 2001 The Apache Software Foundation. All rights reserved.
  4. * For details on use and redistribution please refer to the
  5. * LICENSE file included with these sources.
  6. */
  7. package org.apache.fop.area;
  8. import java.util.List;
  9. import java.util.ArrayList;
  10. // may combine with before float into a conditional area
  11. public class Footnote {
  12. Block separator = null;
  13. // footnote has an optional separator
  14. // and a list of sub block areas that can be added/removed
  15. // this is the relative position of the footnote inside
  16. // the body region
  17. int top;
  18. ArrayList blocks = null;
  19. public Block getSeparator() {
  20. return separator;
  21. }
  22. public List getBlocks() {
  23. return blocks;
  24. }
  25. }