1 28 package net.sf.jasperreports.engine.fill; 29 30 import java.util.ArrayList ; 31 import java.util.List ; 32 33 import net.sf.jasperreports.engine.JRPrintElement; 34 import net.sf.jasperreports.engine.JRPrintElementContainer; 35 36 37 41 public class JRPrintBand implements JRPrintElementContainer 42 { 43 44 45 48 private int height = 0; 49 private List elements = new ArrayList (); 50 51 52 55 public int getHeight() 56 { 57 return this.height; 58 } 59 60 63 public void setHeight(int height) 64 { 65 this.height = height; 66 } 67 68 71 public List getElements() 72 { 73 return this.elements; 74 } 75 76 79 public void addElement(JRPrintElement element) 80 { 81 this.elements.add(element); 82 } 83 84 85 } 86 | Popular Tags |