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

Examples of org.pentaho.reporting.engine.classic.core.IncompatibleFeatureException


          ("Fatal Layouter Error: This report cannot be processed due to a unrecoverable error in the reporting-engine. " +
              "Please file a bug-report.", e));

      if (warnMigration)
      {
        @SuppressWarnings("ThrowableResultOfMethodCallIgnored")
        final IncompatibleFeatureException ife = extractIncompatibleFeatureException(e);
        if (ife != null)
        {
          minimumVersionNeeded = ife.getMinimumVersionNeeded();
        }
        warnMigration = false;
      }
      pageBox = null;
    }
View Full Code Here


    }
    if (BandStyleKeys.LAYOUT_TABLE.equals(layoutType))
    {
      if (strictCompatibilityMode)
      {
        throw new IncompatibleFeatureException("A report with a legacy mode of pre-4.0 cannot handle table layouts. " +
            "Migrate your report to version 4.0 or higher.",
            ClassicEngineBoot.computeVersionId(4, 0, 0));
      }
      final SimpleStyleSheet styleSheet = bandCache.getStyleSheet(elementStyleSheet);
      final BoxDefinition boxDefinition = boxDefinitionFactory.getBoxDefinition(styleSheet);
View Full Code Here

TOP

Related Classes of org.pentaho.reporting.engine.classic.core.IncompatibleFeatureException

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.