001    ///////////////////////////////////////////////////////////////////////////////
002    // Copyright (c) 2006, Frank S. Nestel, All Rights Reserved.
003    //
004    // This library is free software; you can redistribute it and/or
005    // modify it under the terms of the GNU Lesser General Public
006    // License as published by the Free Software Foundation; either
007    // version 2.1 of the License, or (at your option) any later version.
008    //
009    // This library is distributed in the hope that it will be useful,
010    // but WITHOUT ANY WARRANTY; without even the implied warranty of
011    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
012    // GNU General Public License for more details.
013    //
014    // You should have received a copy of the GNU Lesser General Public
015    // License along with this program; if not, write to the Free Software
016    // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
017    ///////////////////////////////////////////////////////////////////////////////
018    
019    package de.spieleck.app.turn;
020    
021    /**
022     * Dummy Interface to make verious version information available to runtime.
023     * <b>Note:</b>Version.java is created automagically from Version.java.tpl
024     *
025     * <p><a href="$URL: https://svn.sourceforge.net/svnroot/jtourney/src/de/spieleck/app/turn/Version.java.tpl $">$URL: https://svn.sourceforge.net/svnroot/jtourney/src/de/spieleck/app/turn/Version.java.tpl $</a></p>
026     *
027     * @author Frank S. Nestel
028     * @author $Author: nestefan $
029     * @version $Revision: 2 $ $Date: 2006-03-20 14:33:27 +0100 (Mo, 20 Mrz 2006) $ $Author: nestefan $
030     */
031    public interface Version
032    {
033        public final static String PROGRAM = "JTourney v1";
034        public final static String ID = "@ID@";
035        public final static String VERSION = "1.0";
036        public final static String REVISION = "$Revision: 2 $";
037        public final static String DATE = "$Date: 2006-03-20 14:33:27 +0100 (Mo, 20 Mrz 2006) $";
038        public final static String BUILD_STAMP = "2006-03-20 14:37:30";
039        public final static String LONG_VERSION = "JTourney "+VERSION
040                                                +"/"+REVISION+"/"+BUILD_STAMP+"";
041    }