01: /*
02: * Created on 30-Nov-2006
03: */
04: package uk.org.ponder.rsf.evolvers;
05:
06: /** A date input evolved that is capable of being adjusted for various styles
07: * of input.
08: * @author Antranig Basman (amb26@ponder.org.uk)
09: */
10:
11: public interface FormatAwareDateInputEvolver extends DateInputEvolver {
12: public static final String DATE_INPUT = "date input";
13: public static final String DATE_TIME_INPUT = "date time input";
14: public static final String TIME_INPUT = "time input";
15:
16: public void setStyle(String style);
17: }
|