Here you can find the source of getMillis(long timeInMinutes)
public static long getMillis(long timeInMinutes)
//package com.java2s; //License from project: Apache License public class Main { public static long getMillis(long timeInMinutes) { return timeInMinutes * 60 * 1000; }/*from w ww. ja v a2s . co m*/ }