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.

BodyRegion.java 637B

123456789101112131415161718192021222324252627282930
  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. public class BodyRegion extends Region {
  9. BeforeFloat beforeFloat;
  10. MainReference mainReference;
  11. Footnote footnote;
  12. public BodyRegion() {
  13. super(BODY);
  14. }
  15. public BeforeFloat getBeforeFloat() {
  16. return beforeFloat;
  17. }
  18. public MainReference getMainReference() {
  19. return mainReference;
  20. }
  21. public Footnote getFootnote() {
  22. return footnote;
  23. }
  24. }