13 lines
184 B
Java
13 lines
184 B
Java
package jxl;
|
|
|
|
import java.text.DateFormat;
|
|
import java.util.Date;
|
|
|
|
public interface DateCell extends Cell {
|
|
Date getDate();
|
|
|
|
boolean isTime();
|
|
|
|
DateFormat getDateFormat();
|
|
}
|