Here you can find the source of getMilliSecondFromMinute(int minute)
public static long getMilliSecondFromMinute(int minute)
//package com.java2s; //License from project: Open Source License public class Main { public static long getMilliSecondFromMinute(int minute) { return minute * 60 * 1000; }/*from w w w .j a va 2 s .c o m*/ }