1 19 20 package jxl.write.biff; 21 22 import java.text.SimpleDateFormat ; 23 24 import jxl.biff.FormatRecord; 25 26 29 public class DateFormatRecord extends FormatRecord 30 { 31 36 protected DateFormatRecord(String fmt) 37 { 38 super(); 39 40 String fs = fmt; 42 43 fs = replace(fs, "a", "AM/PM"); 44 fs = replace(fs, "S", "0"); 45 46 setFormatString(fs); 47 } 48 } 49 50 51 52 | Popular Tags |