Package net.sf.jasperreports.engine.type

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


    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

Related Classes of net.sf.jasperreports.engine.type.FooterPositionEnum

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.