01: package csdl.jblanket.util;
02:
03: /**
04: * Provides the version number of the system.
05: *
06: * @author Joy M. Agustin
07: * @version $Id: SysInfo.java,v 1.1 2004/11/07 00:32:24 timshadel Exp $
08: */
09: public class SysInfo {
10:
11: /** Release value supplied during build process by Ant. */
12: private static String release = "@release@";
13:
14: /**
15: * The main method, which just prints out the release information.
16: *
17: * @param args Ignored.
18: */
19: public static void main(String[] args) {
20: System.out.println("JBlanket Release: " + SysInfo.release);
21: }
22: }
|