1 37 package net.sourceforge.cruisecontrol; 38 39 import java.text.DateFormat ; 40 import java.text.SimpleDateFormat ; 41 42 public final class DateFormatFactory { 43 44 public static final String DEFAULT_FORMAT = "MM/dd/yyyy HH:mm:ss"; 45 private static String format = DEFAULT_FORMAT; 46 47 private DateFormatFactory() { 48 } 49 50 53 public static String getFormat() { 54 return format; 55 } 56 57 61 public static DateFormat getDateFormat() { 62 return new SimpleDateFormat (format); 63 } 64 65 public static void setFormat(String aFormat) { 66 format = aFormat; 67 } 68 69 } 70 | Popular Tags |