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 885B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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 void setBeforeFloat(BeforeFloat bf) {
  16. beforeFloat = bf;
  17. }
  18. public void setMainReference(MainReference mr) {
  19. mainReference = mr;
  20. }
  21. public void setFootnote(Footnote foot) {
  22. footnote = foot;
  23. }
  24. public BeforeFloat getBeforeFloat() {
  25. return beforeFloat;
  26. }
  27. public MainReference getMainReference() {
  28. return mainReference;
  29. }
  30. public Footnote getFootnote() {
  31. return footnote;
  32. }
  33. }