Package org.pentaho.reporting.engine.classic.core.layout.process

Examples of org.pentaho.reporting.engine.classic.core.layout.process.ValidateModelStep


    this.watermarkLayoutBuilder = new SlottedLayoutBuilder(metaData, true);
    this.footerLayoutBuilder = new SlottedLayoutBuilder(metaData, true);
    this.paranoidChecks = "true".equals
        (metaData.getConfiguration().getConfigProperty
            ("org.pentaho.reporting.engine.classic.core.layout.ParanoidChecks"));
    this.validateModelStep = new ValidateModelStep();
    this.staticPropertiesStep = new ComputeStaticPropertiesProcessStep(metaData);
    this.paragraphLineBreakStep = new ParagraphLineBreakStep();
    this.minorAxisLayoutStep = new InfiniteMinorAxisLayoutStep(metaData);
    this.majorAxisLayoutStep = new InfiniteMajorAxisLayoutStep();
    this.canvasMajorAxisLayoutStep = new CanvasMajorAxisLayoutStep();
View Full Code Here


  {
    final MasterReport report = new MasterReport();
    final DefaultProcessingContext processingContext = new DefaultProcessingContext(report);

    final LogicalPageBox pageBox = DebugReportRunner.layoutSingleBand(report, createTable());
    assertTrue(new ValidateModelStep().isLayoutable(pageBox));
    new TableValidationStep().validate(pageBox);
    new ParagraphLineBreakStep().compute(pageBox);
   
    final ComputeStaticPropertiesProcessStep computeStaticPropertiesProcessStep = new ComputeStaticPropertiesProcessStep();
    computeStaticPropertiesProcessStep.initialize(processingContext.getOutputProcessorMetaData(), processingContext);
View Full Code Here

  protected AbstractRenderer(final OutputProcessor outputProcessor)
  {
    this.outputProcessor = outputProcessor;

    this.validateModelStep = new ValidateModelStep();
    this.staticPropertiesStep = new ComputeStaticPropertiesProcessStep();
    this.paragraphLineBreakStep = new ParagraphLineBreakStep();
    this.minorAxisLayoutStep = new InfiniteMinorAxisLayoutStep();
    this.canvasMinorAxisLayoutStep = new CanvasMinorAxisLayoutStep();
    this.majorAxisLayoutStep = new InfiniteMajorAxisLayoutStep();
View Full Code Here

TOP

Related Classes of org.pentaho.reporting.engine.classic.core.layout.process.ValidateModelStep

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.