1 /*2 * Created on Aug 24, 20033 *4 */5 package net.sf.panoptes.view;6 7 import java.text.SimpleDateFormat ;8 import java.util.Date ;9 10 /**11 * 12 * 13 * @author Dag Liodden14 * @version 0.115 */16 public class FormatUtil {17 18 public String formatTimestamp(long timestamp, String format) {19 return new SimpleDateFormat (format).format(new Date (timestamp));20 }21 }22