package tudu;
/**
* Stores the application's constants.
*
* @author Julien Dubois
*/
public class Constants {
/**
* The version of the application.
*/
public static final String VERSION = "3.0-ALPHA";
/**
* US-style date format.
*/
public static final String DATEFORMAT_US = "MM/dd/yyyy";
/**
* Shortened US-style date format.
*/
public static final String DATEFORMAT_US_SHORT = "MM/dd/yy";
/**
* European-style date format.
*/
public static final String DATEFORMAT_FRENCH = "dd/MM/yyyy";
/**
* Shortened European-style date format.
*/
public static final String DATEFORMAT_FRENCH_SHORT = "dd/MM/yy";
}