KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > csdl > jblanket > util > SysInfo


1 package csdl.jblanket.util;
2
3 /**
4  * Provides the version number of the system.
5  *
6  * @author Joy M. Agustin
7  * @version $Id: SysInfo.java,v 1.1 2004/11/07 00:32:24 timshadel Exp $
8  */

9 public class SysInfo {
10
11   /** Release value supplied during build process by Ant. */
12   private static String JavaDoc release = "4.4.0308";
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 JavaDoc[] args) {
20     System.out.println("JBlanket Release: " + SysInfo.release);
21   }
22 }
23
Popular Tags