Here you can find the source of getPriceFormat()
public static DecimalFormat getPriceFormat()
//package com.java2s; //License from project: Open Source License import java.text.DecimalFormat; public class Main { private static final DecimalFormat PRICE_FORMAT = new DecimalFormat( "#0.00"); public static DecimalFormat getPriceFormat() { return PRICE_FORMAT; }// ww w. j a va 2 s .com }