01: /*
02: * $Id: Version.java,v 1.78 2002/09/16 08:05:02 jkl Exp $
03: *
04: * Copyright (c) 2002 Njet Communications Ltd. All Rights Reserved.
05: *
06: * Use is subject to license terms, as defined in
07: * Anvil Sofware License, Version 1.1. See LICENSE
08: * file, or http://njet.org/license-1.1.txt
09: */
10: package anvil;
11:
12: public class Version {
13:
14: public static final String getVersion() {
15: return "3.0";
16: }
17:
18: public static final String getBuild() {
19: return "anvil_3_0__2521";
20: }
21:
22: public static final String getFullVersion() {
23: return "3.0 build 2521 2002/09/13 16:41:16";
24: }
25: }
|