Here you can find the source of formatMinutes(double value)
public static String formatMinutes(double value)
//package com.java2s; //License from project: Open Source License public class Main { public static String formatMinutes(double value) { return String.format("%4.2f", value); }//from ww w. ja va2s . c om }