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

Examples of org.pentaho.reporting.engine.classic.core.filter.types.LabelType


public class LabelReportElementReadHandler extends AbstractTextElementReadHandler
{
  public LabelReportElementReadHandler()
  {
    final Element element = new Element();
    element.setElementType(new LabelType());
    setElement(element);
  }
View Full Code Here


      {
        return;
      }

      final Element headerLabelElement = new Element();
      headerLabelElement.setElementType(new LabelType());
      if (groupDefinition.getDisplayName() != null)
      {
        headerLabelElement.setAttribute
            (AttributeNames.Core.NAMESPACE, AttributeNames.Core.VALUE, groupDefinition.getDisplayName());
      }
View Full Code Here

    final Element footerValueElement = AutoGeneratorUtility.generateFooterElement
        (aggFunctionClass, computeElementType(groupDefinition),
            groupDefinition.getGroupName(), groupDefinition.getField());

    final Element footerLabelElement = new Element();
    footerLabelElement.setElementType(new LabelType());
    if (groupDefinition.getGroupTotalsLabel() != null)
    {
      footerLabelElement.setAttribute
          (AttributeNames.Core.NAMESPACE, AttributeNames.Core.VALUE, groupDefinition.getGroupTotalsLabel());
    }
View Full Code Here

TOP

Related Classes of org.pentaho.reporting.engine.classic.core.filter.types.LabelType

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.