001    package ifs;
002    
003    /**
004     * IFS common constants.
005     * <br><br>
006     * Build number and release date are to be set by apache ant.
007     * 
008     * @author <a href="mailto:muller@ktiml.mff.cuni.cz">Tomáš Müller</a>
009     * @version 1.0
010     */
011    public class Constants {
012        private static final int BLD_NUMBER = -1;
013        private static final String REL_DATE = "Unknown";
014    
015        /**
016         * Build number
017         */
018        public static int getBuildNumber() {
019            return BLD_NUMBER;
020        }
021    
022        /**
023         * Release date
024         */
025        public static String getReleaseDate() {
026            return REL_DATE;
027        }
028    }