13 lines
321 B
Java
13 lines
321 B
Java
package jxl.write;
|
|
|
|
import java.text.SimpleDateFormat;
|
|
import jxl.biff.DisplayFormat;
|
|
import jxl.write.biff.DateFormatRecord;
|
|
|
|
public class DateFormat extends DateFormatRecord implements DisplayFormat {
|
|
public DateFormat(String format) {
|
|
super(format);
|
|
SimpleDateFormat df = new SimpleDateFormat(format);
|
|
}
|
|
}
|