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.

Flow.java 593B

12345678910111213141516171819202122232425
  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.ArrayList;
  9. import java.util.List;
  10. // this is a normal flow reference area
  11. // it containts a list of block areas from the flow
  12. public class Flow extends Area {
  13. // the list of blocks created from the flow
  14. ArrayList blocks = new ArrayList();
  15. int stacking = TB;
  16. int width;
  17. public List getBlocks() {
  18. return blocks;
  19. }
  20. }