Package net.sf.jasperreports.engine.fill
Class JRFillCommonReturnValue
- java.lang.Object
-
- net.sf.jasperreports.engine.fill.JRFillCommonReturnValue
-
- All Implemented Interfaces:
Cloneable,CommonReturnValue,JRCloneable
- Direct Known Subclasses:
JRFillExpressionReturnValue,JRFillVariableReturnValue
public abstract class JRFillCommonReturnValue extends Object implements CommonReturnValue
Implementation ofCommonReturnValueused by the filler.- Author:
- Lucian Chirita (lucianc@users.sourceforge.net)
-
-
Field Summary
Fields Modifier and Type Field Description protected CalculationEnumcalculationstatic StringEXCEPTION_MESSAGE_KEY_INCREMENTER_CLASS_NOT_FOUNDprotected BaseReportFillerfillerprotected JRIncrementerincrementerprotected StringincrementerFactoryClassNameprotected StringtoVariable
-
Constructor Summary
Constructors Modifier Constructor Description protectedJRFillCommonReturnValue(CommonReturnValue returnValue, JRFillObjectFactory factory, BaseReportFiller filler)protectedJRFillCommonReturnValue(JRFillCommonReturnValue fillReturnValue, JRFillCloneFactory factory)Cloning constructor.
-
Method Summary
-
-
-
Field Detail
-
EXCEPTION_MESSAGE_KEY_INCREMENTER_CLASS_NOT_FOUND
public static final String EXCEPTION_MESSAGE_KEY_INCREMENTER_CLASS_NOT_FOUND
- See Also:
- Constant Field Values
-
toVariable
protected final String toVariable
-
incrementerFactoryClassName
protected final String incrementerFactoryClassName
-
calculation
protected final CalculationEnum calculation
-
incrementer
protected JRIncrementer incrementer
-
filler
protected final BaseReportFiller filler
-
-
Constructor Detail
-
JRFillCommonReturnValue
protected JRFillCommonReturnValue(CommonReturnValue returnValue, JRFillObjectFactory factory, BaseReportFiller filler)
-
JRFillCommonReturnValue
protected JRFillCommonReturnValue(JRFillCommonReturnValue fillReturnValue, JRFillCloneFactory factory)
Cloning constructor.- Parameters:
fillReturnValue- the object to clonefactory- the clone factory
-
-
Method Detail
-
getToVariable
public String getToVariable()
Description copied from interface:CommonReturnValueReturns the name of the report variable where the value should be copied.- Specified by:
getToVariablein interfaceCommonReturnValue- Returns:
- the name of the report variable where the value should be copied.
-
getIncrementerFactoryClassName
public String getIncrementerFactoryClassName()
Description copied from interface:CommonReturnValueReturns the incrementer factory class name.The factory will be used to increment the value of the report variable with the returned value.
- Specified by:
getIncrementerFactoryClassNamein interfaceCommonReturnValue- Returns:
- the incrementer factory class name.
-
getCalculation
public CalculationEnum getCalculation()
Description copied from interface:CommonReturnValueReturns the calculation type.When copying the value from, a formula can be applied such that sum, maximum, average and so on can be computed.
- Specified by:
getCalculationin interfaceCommonReturnValue- Returns:
- the calculation type.
-
getIncrementer
public JRIncrementer getIncrementer(FillReturnValues.SourceContext sourceContext)
Gets the incrementer to be used for this copied value.
-
isDerived
public boolean isDerived()
-
setDerived
public void setDerived(boolean derived)
-
addReturnValue
protected JRFillCommonReturnValue addReturnValue(JRFillCommonReturnValue returnValue, List<JRFillCommonReturnValue> returnValueList, JRFillObjectFactory factory, BaseReportFiller filler)
-
addDerivedReturnValue
protected abstract JRFillCommonReturnValue addDerivedReturnValue(CommonReturnValue parentReturnValue, List<JRFillCommonReturnValue> returnValueList, JRFillObjectFactory factory, BaseReportFiller filler)
-
createHelperReturnValue
protected abstract CommonReturnValue createHelperReturnValue(CommonReturnValue returnValue, String nameSuffix, CalculationEnum calculation)
-
createDistinctCountHelperReturnValue
protected abstract CommonReturnValue createDistinctCountHelperReturnValue(CommonReturnValue returnValue)
-
clone
public Object clone()
- Specified by:
clonein interfaceJRCloneable- Overrides:
clonein classObject
-
-