Here you can find the source of formatMoney(int dosh)
public static String formatMoney(int dosh)
//package com.java2s; //License from project: Open Source License public class Main { public static final String CURRENCY_SYMBOL = "$"; public static String formatMoney(int dosh) { String ret = CURRENCY_SYMBOL + String.valueOf(dosh); return ret; }//from w w w . j av a2s .com }