Package org.apache.fop.layout

Examples of org.apache.fop.layout.BlockArea.start()


        BlockArea blockArea = new BlockArea(fs, area.getAllocationWidth(),
                                            area.spaceLeft(), startIndent, endIndent, 0, align,
                                            alignLast, lineHeight);
        blockArea.setPage(area.getPage());
        blockArea.setBackgroundColor(backgroundColor);
        blockArea.start();

        blockArea.setAbsoluteHeight(area.getAbsoluteHeight());
        blockArea.setIDReferences(area.getIDReferences());

        int numChildren = this.children.size();
View Full Code Here


  BlockArea blockArea =
      new BlockArea(fs, area.getAllocationWidth(),
        area.spaceLeft(), startIndent, endIndent, 0,
        align, alignLast, lineHeight);
  blockArea.setPage(area.getPage());
  blockArea.start();

  int numChildren = this.children.size();
  for (int i = this.marker; i < numChildren; i++) {
      if (!(children.elementAt(i) instanceof ListItem)) {
    System.err.println("WARNING: This version of FOP requires list-items inside list-blocks");
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.