Package net.sf.jasperreports.engine.part
Class DefaultPartComponentManager
- java.lang.Object
-
- net.sf.jasperreports.engine.part.DefaultPartComponentManager
-
- All Implemented Interfaces:
PartComponentManager
public class DefaultPartComponentManager extends Object implements PartComponentManager
A defaultcomponent manager
implementation.- Author:
- Lucian Chirita (lucianc@users.sourceforge.net)
-
-
Constructor Summary
Constructors Constructor Description DefaultPartComponentManager()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PartComponentCompiler
getComponentCompiler(JasperReportsContext jasperReportsContext)
Returns the component compiler.PartComponentFillFactory
getComponentFillFactory(JasperReportsContext jasperReportsContext)
Returns the factory of fill component instances.void
setComponentCompiler(PartComponentCompiler componentCompiler)
Sets the component compiler implementation.void
setComponentFillFactory(PartComponentFillFactory fillFactory)
Sets the fill component factory implementation.
-
-
-
Method Detail
-
getComponentFillFactory
public PartComponentFillFactory getComponentFillFactory(JasperReportsContext jasperReportsContext)
Description copied from interface:PartComponentManager
Returns the factory of fill component instances.- Specified by:
getComponentFillFactory
in interfacePartComponentManager
- Returns:
- the factory of fill component instances
-
setComponentFillFactory
public void setComponentFillFactory(PartComponentFillFactory fillFactory)
Sets the fill component factory implementation.- Parameters:
fillFactory
- the fill component factory- See Also:
getComponentFillFactory(JasperReportsContext)
-
getComponentCompiler
public PartComponentCompiler getComponentCompiler(JasperReportsContext jasperReportsContext)
Description copied from interface:PartComponentManager
Returns the component compiler.- Specified by:
getComponentCompiler
in interfacePartComponentManager
- Returns:
- the component compiler
-
setComponentCompiler
public void setComponentCompiler(PartComponentCompiler componentCompiler)
Sets the component compiler implementation.- Parameters:
componentCompiler
- the component compiler- See Also:
getComponentCompiler(JasperReportsContext)
-
-