first commit
This commit is contained in:
28
hrmsEjb/net/sf/jasperreports/engine/fill/JRPrintBand.java
Normal file
28
hrmsEjb/net/sf/jasperreports/engine/fill/JRPrintBand.java
Normal file
@@ -0,0 +1,28 @@
|
||||
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);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user