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

Examples of org.pentaho.reporting.engine.classic.core.dom.MatcherContext


    return new CrosstabDimension(rowGroup.getField(), title, summary, summaryTitle);
  }

  private static String findTitle(final String field, final Band titleHeader)
  {
    final MatcherContext context = new MatcherContext();
    context.setMatchSubReportChilds(false);

    NodeMatcher m = new AndMatcher(new ElementMatcher(LabelType.INSTANCE),
        new AttributeMatcher(AttributeNames.Wizard.NAMESPACE, AttributeNames.Wizard.LABEL_FOR, field));
    ReportElement match = ReportStructureMatcher.match(context, titleHeader, m);
    if (match == null)
View Full Code Here

TOP

Related Classes of org.pentaho.reporting.engine.classic.core.dom.MatcherContext

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.