Examples of LabelType


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

  public static Element generateHeaderElement(final String fieldName)
  {
    final Element headerElement = new Element();
    headerElement.getStyle().setStyleProperty(ElementStyleKeys.DYNAMIC_HEIGHT, Boolean.TRUE);
    headerElement.setElementType(new LabelType());
    headerElement.setAttribute(AttributeNames.Wizard.NAMESPACE, AttributeNames.Wizard.LABEL_FOR, fieldName);
    headerElement.setAttribute(AttributeNames.Wizard.NAMESPACE,
        AttributeNames.Wizard.ALLOW_METADATA_STYLING, Boolean.TRUE);
    headerElement.setAttribute(AttributeNames.Wizard.NAMESPACE,
        AttributeNames.Wizard.ALLOW_METADATA_ATTRIBUTES, Boolean.TRUE);
View Full Code Here

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

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

      {
        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

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

    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
Copyright © 2018 www.massapi.com. 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.