Package net.sf.jasperreports.engine.fill
Interface DatasetFillContext
- All Known Implementing Classes:
JRFillDataset
public interface DatasetFillContext
Context information related to a fill time dataset.
- Author:
- Lucian Chirita (lucianc@users.sourceforge.net)
-
Method Summary
Modifier and TypeMethodDescriptiongetFieldValue
(String field, EvaluationType evaluation) Returns the value of a field.Returns the locale used by the dataset.getParameterValue
(String parameter) Returns the value of a parameter.getVariableValue
(String variable, EvaluationType evaluation) Returns the value of a variable.
-
Method Details
-
getParameterValue
Returns the value of a parameter.- Parameters:
parameter
- the parameter name- Returns:
- the parameter value
-
getFieldValue
Returns the value of a field.- Parameters:
field
- the field nameevaluation
- the evaluation type- Returns:
- the field value
-
getVariableValue
Returns the value of a variable.- Parameters:
variable
- the variable nameevaluation
- the evaluation type- Returns:
- the variable value
-
getLocale
Locale getLocale()Returns the locale used by the dataset.
-