29 lines
624 B
Java
29 lines
624 B
Java
package net.sf.jasperreports.engine.fill;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
import net.sf.jasperreports.engine.JRPrintElement;
|
|
import net.sf.jasperreports.engine.JRPrintElementContainer;
|
|
|
|
public class JRPrintBand implements JRPrintElementContainer {
|
|
private int height = 0;
|
|
|
|
private List elements = new ArrayList();
|
|
|
|
public int getHeight() {
|
|
return this.height;
|
|
}
|
|
|
|
public void setHeight(int height) {
|
|
this.height = height;
|
|
}
|
|
|
|
public List getElements() {
|
|
return this.elements;
|
|
}
|
|
|
|
public void addElement(JRPrintElement element) {
|
|
this.elements.add(element);
|
|
}
|
|
}
|