Package net.sf.jasperreports.engine.fill
Interface JRSubreportRunnerFactory
-
- All Known Implementing Classes:
JRContinuationSubreportRunnerFactory
,JRThreadSubreportRunnerFactory
,ThreadPoolSubreportRunnerFactory
public interface JRSubreportRunnerFactory
Factory ofJRSubreportRunner
instances.- Author:
- Lucian Chirita (lucianc@users.sourceforge.net)
-
-
Field Summary
Fields Modifier and Type Field Description static String
SUBREPORT_RUNNER_FACTORY
Property specifying theJRSubreportRunnerFactory
implementation to use for creating subreport runners.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JRSubreportRunner
createSubreportRunner(JRFillSubreport fillSubreport, JRBaseFiller subreportFiller)
Creates a newJRSubreportRunner
instance.
-
-
-
Field Detail
-
SUBREPORT_RUNNER_FACTORY
static final String SUBREPORT_RUNNER_FACTORY
Property specifying theJRSubreportRunnerFactory
implementation to use for creating subreport runners.- See Also:
- Constant Field Values
-
-
Method Detail
-
createSubreportRunner
JRSubreportRunner createSubreportRunner(JRFillSubreport fillSubreport, JRBaseFiller subreportFiller)
Creates a newJRSubreportRunner
instance.- Parameters:
fillSubreport
- the subreport element of the master reportsubreportFiller
- the subreport filler created to fill the subreport- Returns:
- a new
JRSubreportRunner
instance
-
-