Jasperreports NumberFormat は、cannot be resolved to a type

Jasperreports で、java.text.format.NumberFormat で、金額 format 出力しようと

<textFieldExpression>
<![CDATA[java.text.format.NumberFormat.getCurrencyInstance().format($P{total_money})]]>
</textFieldExpression>

と書いたら、JRException 発生
java.text.format.NumberFormat cannot be resolved to a type
になってしまう。

DecimalFormatを使わざる得ない、

<textFieldExpression>
<![CDATA[new DecimalFormat("\\###,###,###").format($P{total_money})]]>
</textFieldExpression>