}
Object bigDecimal = new AWVBigDecimalFormatter("#,###.##", 2, locale);
formatters.put(BigDecimalFormatterKey, bigDecimal);
xml.put(BigDecimalFormatterKey, new PipedFormatter(CanonicalNumberFormatter, bigDecimal));
Object dbl = new DoubleFormatter() {
protected String formatObject (Object object, Locale locale)
{
Assert.that(object instanceof Double, "invalid type");
return getStringValue((Double)object, 3, 3, "#,###.000", locale);
}