Here you can find the source of minutes(int m)
static private int minutes(int m)
//package com.java2s; //License from project: Apache License public class Main { static private int minutes(int m) { return m * seconds(60); }/*from w w w.j a v a2 s .co m*/ static private int seconds(int s) { return s * 1000; } }