01: //Portions Copyright 2001, Philip Johnson. See LicenseInfo.html for details.
02: package csdl.stackmvc.util;
03:
04: /**
05: * Provides system information (build and release data).
06: * Is also the main class run when invoking the stackmvc jar file.
07: *
08: * @author Philip Johnson.
09: * @version $Id: SysInfo.java,v 1.2 2003/01/25 01:49:02 jagustin Exp $
10: */
11: public class SysInfo {
12:
13: /** StackMVC release value supplied during build process by Ant. */
14: private static String release = "@release@";
15:
16: /** StackMVC buildTime value supplied during build process by Ant. */
17: private static String buildTime = "@buildTime@";
18:
19: /**
20: * Gets the release attribute of the SysInfo class
21: *
22: * @return The release value
23: */
24: public static String getRelease() {
25: return SysInfo.release;
26: }
27:
28: /**
29: * Gets the buildtime attribute of the SysInfo class
30: *
31: * @return The buildtime value
32: */
33: public static String getBuildTime() {
34: return SysInfo.buildTime;
35: }
36:
37: /**
38: * Main class for the StackMVC system.
39: * Prints the release information.
40: *
41: * @param args Ignored.
42: */
43: public static void main(String args[]) {
44: System.out.println("Stack MVC Release: " + release);
45: System.out.println(" Build time: " + buildTime);
46: }
47: }
|