FileDocCategorySizeDatePackage
QuickTimeFormat.javaAPI DocExample316Sat Jan 13 18:05:36 GMT 2001com.darwinsys.util

QuickTimeFormat.java

package com.darwinsys.util;

/** Just some quick-and-dirty time format.
 * Nothing to do with Apple's excellent multimedia format!
 */
public class QuickTimeFormat {
	//+
	/** Convert a long ("time_t") to seconds and thousandths. */
	public static String msToSecs(long t) {
		return t/1000 + "." + t%1000;
	}
	//-
}