wwndesc  1.0-76
version.java
Go to the documentation of this file.
1 package org.smallfoot.wwn;
2 
3 /** @file */
4 
5 /**
6  * version is used to allow a package that uses this package to be able to "ask" the jar file what version it is
7  */
8 public class version
9 {
10  /**
11  * returns the version of the class; used to cause the build-time-detected version and buildid to be available by consumers of the generated wwndesc.jar file
12  *
13  * for example:
14  * java -cp wwndesc.jar org.smallfoot.wwn.version
15  * 1.0.76
16  *
17  * @param arg ignored
18  */
19  static public void main (String arg[])
20  {
21  System.out.println("1.0.76");
22  }
23 }
version is used to allow a package that uses this package to be able to "ask" the jar file what versi...
Definition: version.java:8
static void main(String arg[])
returns the version of the class; used to cause the build-time-detected version and buildid to be ava...
Definition: version.java:19