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 void
addFillListener(FillListener listener)
void
cancelFill()
JasperPrint
fill(Map<String,Object> parameters)
JasperPrint
fill(Map<String,Object> parameters, Connection connection)
JasperPrint
fill(Map<String,Object> parameters, JRDataSource dataSource)
JRFillContext
getFillContext()
boolean
isPageFinal(int pageIndex)
-
-
-
Method Detail
-
fill
@continuable JasperPrint fill(Map<String,Object> parameters, Connection connection) throws JRException
- Throws:
JRException
-
fill
@continuable JasperPrint fill(Map<String,Object> parameters, JRDataSource dataSource) throws JRException
- Throws:
JRException
-
fill
@continuable JasperPrint fill(Map<String,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()
-
-