Examples of FooterPositionEnum


Examples of net.sf.jasperreports.engine.type.FooterPositionEnum

  /**
   *
   */
  public void setFooterPosition(FooterPositionEnum footerPositionValue)
  {
    FooterPositionEnum old = this.footerPositionValue;
    this.footerPositionValue = footerPositionValue;
    getEventSupport().firePropertyChange(PROPERTY_FOOTER_POSITION, old, this.footerPositionValue);
  }
View Full Code Here

Examples of net.sf.jasperreports.engine.type.FooterPositionEnum

    if (minHeightToStartNewPage != null && minHeightToStartNewPage.length() > 0)
    {
      group.setMinHeightToStartNewPage(Integer.parseInt(minHeightToStartNewPage));
    }

    FooterPositionEnum footerPosition = FooterPositionEnum.getByName(atts.getValue(JRXmlConstants.ATTRIBUTE_footerPosition));
    if (footerPosition != null)
    {
      group.setFooterPosition(footerPosition);
    }
   
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.