Ejemplo n.º 1
0
 @Override
 public T stringToValue(String name, ReportParameters reportParameters) throws DRException {
   return stringToValue((String) reportParameters.getValue(name), reportParameters.getLocale());
 }
Ejemplo n.º 2
0
 @Override
 public T stringToValue(DRIValue<String> value, ReportParameters reportParameters)
     throws DRException {
   return stringToValue(reportParameters.getValue(value), reportParameters.getLocale());
 }
Ejemplo n.º 3
0
 @Override
 public String valueToString(DRIValue<? extends U> value, ReportParameters reportParameters) {
   return valueToString(reportParameters.getValue(value), reportParameters.getLocale());
 }
Ejemplo n.º 4
0
 @Override
 @SuppressWarnings("unchecked")
 public String valueToString(String name, ReportParameters reportParameters) {
   return valueToString((U) reportParameters.getValue(name), reportParameters.getLocale());
 }
 @Override
 public String format(Number value, ReportParameters reportParameters) {
   return label + currencyType.valueToString(value, reportParameters.getLocale());
 }