KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > nl > justobjects > pushlet > Version


1 // Copyright (c) 2000 Just Objects B.V. <just@justobjects.nl>
2
// Distributable under LGPL license. See terms of license at gnu.org.
3

4 package nl.justobjects.pushlet;
5
6 /**
7  * Version info class.
8  *
9  * <h3>Purpose</h3>
10  * Extract version info from jar manifest file.
11  *
12  * @author Just van den Broecke
13  * @version $Id: Version.java,v 1.3 2004/02/08 16:07:55 justb Exp $
14  */

15
16 public class Version {
17     /** Version info extracted from the .jar manifest file (see build.xml and build.properties). */
18     public static final String JavaDoc SOFTWARE_VERSION = Version.class.getPackage().getSpecificationVersion();
19     public static final String JavaDoc BUILD_DATE = Version.class.getPackage().getImplementationVersion();
20 }
21
22 /*
23  * $Log: Version.java,v $
24  * Revision 1.3 2004/02/08 16:07:55 justb
25  * *** empty log message ***
26  *
27  * Revision 1.2 2003/08/15 08:37:40 justb
28  * fix/add Copyright+LGPL file headers and footers
29  *
30  * Revision 1.1 2003/08/11 21:29:48 justb
31  * first checkin
32  *
33  *
34  */

35
Popular Tags