Class SubreportPartComponentCompiler
- java.lang.Object
-
- net.sf.jasperreports.parts.subreport.SubreportPartComponentCompiler
-
- All Implemented Interfaces:
PartComponentCompiler
public class SubreportPartComponentCompiler extends java.lang.Object implements PartComponentCompiler
Compile-time handler oflist componentinstances.- Author:
- Lucian Chirita (lucianc@users.sourceforge.net)
-
-
Constructor Summary
Constructors Constructor Description SubreportPartComponentCompiler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcollectExpressions(PartComponent component, JRExpressionCollector collector)Collects report expressions from a component.PartComponenttoCompiledComponent(PartComponent component, JRBaseObjectFactory baseFactory)Provides a "compiled" component instance that will be included in the compiled report.voidverify(PartComponent component, JRVerifier verifier)Logically verifies a component.
-
-
-
Method Detail
-
collectExpressions
public void collectExpressions(PartComponent component, JRExpressionCollector collector)
Description copied from interface:PartComponentCompilerCollects report expressions from a component.- Specified by:
collectExpressionsin interfacePartComponentCompiler- Parameters:
component- the componentcollector- the expression collector
-
toCompiledComponent
public PartComponent toCompiledComponent(PartComponent component, JRBaseObjectFactory baseFactory)
Description copied from interface:PartComponentCompilerProvides a "compiled" component instance that will be included in the compiled report.- Specified by:
toCompiledComponentin interfacePartComponentCompiler- Parameters:
component- the component from the design reportbaseFactory- the factory of base/compiled report elements- Returns:
- a component instance that is to be included in the compiled report
-
verify
public void verify(PartComponent component, JRVerifier verifier)
Description copied from interface:PartComponentCompilerLogically verifies a component.- Specified by:
verifyin interfacePartComponentCompiler- Parameters:
component- the componentverifier- the verifier object, which can be used to raise validation errors- See Also:
JRVerifier.getCurrentComponentElement()
-
-