1 package net.suberic.pooka; 2 import java.util.*; 3 import java.text.SimpleDateFormat ; 4 5 6 10 public class DateFormatter { 11 12 public SimpleDateFormat fullDateFormat; 15 16 public SimpleDateFormat todayFormat; 18 19 public SimpleDateFormat thisWeekFormat; 22 23 public SimpleDateFormat shortFormat; 26 27 public DateFormatter() { 28 fullDateFormat = new java.text.SimpleDateFormat (Pooka.getProperty("DateFormat", "EEE, MMM dd, yyyy, hh:mm")); 29 todayFormat = new java.text.SimpleDateFormat (Pooka.getProperty("FolderTable.TodayDateFormat", "HH:mm")); 30 thisWeekFormat = new java.text.SimpleDateFormat (Pooka.getProperty("FolderTable.ThisWeekDateFormat", "EEE HH:mm")); 31 shortFormat = new java.text.SimpleDateFormat (Pooka.getProperty("FolderTable.DefaultDateFormat", "MM/dd/yy HH:mm")); 32 33 } 34 35 36 } 37 | Popular Tags |