Package net.sf.jasperreports.engine.design

Examples of net.sf.jasperreports.engine.design.JRDesignSection.addBand()


  }
 
  protected JRSection wrapBand(JRBand band, JROrigin origin)
  {
    JRDesignSection section = new JRDesignSection(origin);
    section.addBand(band);
    return section;
  }
 
  public JRBand getBackground()
  {
View Full Code Here


      return null;
    }
   
    JROrigin origin = new JROrigin(null, getName(), bandType);
    JRDesignSection section = new JRDesignSection(origin);
    section.addBand(band);
    return section;
  }
 
  public JRSection getGroupFooterSection()
  {
View Full Code Here

        headerBand.setHeight(headerHeight);
        templateDesign.setColumnHeader(headerBand);

        JRDesignBand detailBand = new JRDesignBand();
        detailBand.setHeight(detailHeight);
        detailSection.addBand(detailBand);

        final int columnWidth;
        final int numColumns = columns.size();
        if (columns.isEmpty()) {
            columnWidth = templateDesign.getPageWidth();
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.