Package org.apache.fop.layout

Examples of org.apache.fop.layout.RuleArea


      startIndent += forcedStartOffset;
      endIndent += area.getAllocationWidth() - forcedWidth -
    forcedStartOffset;
  }

  RuleArea ruleArea = new RuleArea(fs,
           area.getAllocationWidth(),
           area.spaceLeft(),
           startIndent, endIndent,
           align, ruleThickness,
           ruleLength, red, green,
           blue);
  area.addChild(ruleArea);
  area.increaseHeight(ruleArea.getHeight());
 
  if (spaceAfter != 0) {
      area.addDisplaySpace(spaceAfter);
  }
View Full Code Here


        break;
      case LeaderPattern.USECONTENT:
        MessageHandler.errorln("leader-pattern=\"use-content\" not supported by this version of Fop");
        break;
    }
    RuleArea ruleArea = new RuleArea(fs,
                         area.getAllocationWidth(),
                         area.spaceLeft(),
                         startIndent, endIndent,
                         align, ruleThickness,
                         ruleLength, red, green,
                         blue);

    area.addChild(ruleArea);
    area.increaseHeight(ruleArea.getHeight());

    if (spaceAfter != 0) {
        area.addDisplaySpace(spaceAfter);
    }
View Full Code Here

TOP

Related Classes of org.apache.fop.layout.RuleArea

Copyright © 2018 www.massapicom. 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.