01: /*=============================================================================
02: * Copyright Texas Instruments 2003. All Rights Reserved.
03: *
04: * This program is free software; you can redistribute it and/or
05: * modify it under the terms of the GNU Lesser General Public
06: * License as published by the Free Software Foundation; either
07: * version 2 of the License, or (at your option) any later version.
08: *
09: * This program is distributed in the hope that it will be useful,
10: * but WITHOUT ANY WARRANTY; without even the implied warranty of
11: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12: * Lesser General Public License for more details.
13: *
14: * You should have received a copy of the GNU Lesser General Public
15: * License along with this library; if not, write to the Free Software
16: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17: *
18: * $ProjectHeader: $
19: */
20:
21: package oscript;
22:
23: /**
24: * Version name/number info. This file is autogenerated from Version.java.in.
25: *
26: * @author Rob Clark (rob@ti.com)
27: * <!--$Format: " * @version $Revision$"$-->
28: * @version ??
29: */
30: public final class Version {
31: private static final int VERSION_NUMBER = 1917;
32: private static final String VERSION_NAME = "2.10.4";
33:
34: /**
35: * Get the svn repository version number
36: *
37: * @return an integer indicating the revision number of the src
38: * code repository from which the interpreter was built
39: */
40: public static int getVersionNumber() {
41: return VERSION_NUMBER;
42: }
43:
44: /**
45: * Get svn root path directory name, ie. either "trunk", a branch name,
46: * or a tag name.
47: *
48: * @return a string
49: */
50: public static String getVersionName() {
51: return VERSION_NAME;
52: }
53: }
54:
55: /*
56: * Local Variables:
57: * tab-width: 2
58: * indent-tabs-mode: nil
59: * mode: java
60: * c-indentation-style: java
61: * c-basic-offset: 2
62: * eval: (c-set-offset 'substatement-open '0)
63: * eval: (c-set-offset 'case-label '+)
64: * eval: (c-set-offset 'inclass '+)
65: * eval: (c-set-offset 'inline-open '0)
66: * End:
67: */
|