

public interface MindsetConstants {

/** The width of the application window */
	public static final int APPLICATION_WIDTH = 800;

/** The height of the application window */
	public static final int APPLICATION_HEIGHT = 600;

	/** The first year in the database */
	public static final int START_YEAR = 1800;

/** The last year in the database */
	public static final int END_YEAR= 2015;
	
/** The number of years */
	public static final int N_YEARS = END_YEAR - START_YEAR + 1;
}
