Package net.sf.jasperreports.engine.fill
Interface ReportFiller
-
- All Known Implementing Classes:
BaseReportFiller,JRBaseFiller,JRHorizontalFiller,JRVerticalFiller,PartReportFiller
public interface ReportFiller- Author:
- Lucian Chirita (lucianc@users.sourceforge.net)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddFillListener(FillListener listener)voidcancelFill()JasperPrintfill(java.util.Map<java.lang.String,java.lang.Object> parameters)JasperPrintfill(java.util.Map<java.lang.String,java.lang.Object> parameters, java.sql.Connection connection)JasperPrintfill(java.util.Map<java.lang.String,java.lang.Object> parameters, JRDataSource dataSource)JRFillContextgetFillContext()booleanisPageFinal(int pageIndex)
-
-
-
Method Detail
-
fill
@continuable JasperPrint fill(java.util.Map<java.lang.String,java.lang.Object> parameters, java.sql.Connection connection) throws JRException
- Throws:
JRException
-
fill
@continuable JasperPrint fill(java.util.Map<java.lang.String,java.lang.Object> parameters, JRDataSource dataSource) throws JRException
- Throws:
JRException
-
fill
@continuable JasperPrint fill(java.util.Map<java.lang.String,java.lang.Object> parameters) throws JRException
- Throws:
JRException
-
addFillListener
void addFillListener(FillListener listener)
-
cancelFill
void cancelFill() throws JRException- Throws:
JRException
-
isPageFinal
boolean isPageFinal(int pageIndex)
-
getFillContext
JRFillContext getFillContext()
-
-