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

Examples of org.pentaho.reporting.engine.classic.core.states.crosstab.CrosstabProcessorFunction


  private StructureFunction[] computeStructureFunctions(final StructureFunction[] fromReport,
                                                        final OutputProcessorMetaData metaData)
  {
    if (metaData.isFeatureSupported(OutputProcessorFeature.DESIGNTIME))
    {
      return new StructureFunction[]{new CrosstabProcessorFunction()};
    }

    final ArrayList e = new ArrayList(Arrays.asList(fromReport));
    if (structuralPreprocessingNeeded)
    {
      e.add(new CrosstabProcessorFunction());
    }
    e.add(new AttributeExpressionsEvaluator());
    e.add(new SheetNameFunction());
    e.add(new MetaDataStyleEvaluator());
    e.add(new StyleExpressionsEvaluator());
View Full Code Here


                                                        final OutputProcessorMetaData metaData)
  {
    final ArrayList<StructureFunction> e = new ArrayList<StructureFunction>(Arrays.asList(fromReport));
    if (structuralPreprocessingNeeded)
    {
      e.add(new CrosstabProcessorFunction());
    }
    if (isDesigntime() == false)
    {
      e.add(new AttributeExpressionsEvaluator());
      e.add(new SheetNameFunction());
View Full Code Here

TOP

Related Classes of org.pentaho.reporting.engine.classic.core.states.crosstab.CrosstabProcessorFunction

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.