Here you can find the source of secondsToMillis(int seconds)
public static final int secondsToMillis(int seconds)
//package com.java2s; public class Main { public static final int secondsToMillis(int seconds) { return seconds * 1000; }/*from w w w .j av a 2s . c o m*/ }