org.apache.xerces.impl
public class: Version [javadoc |
source]
java.lang.Object
org.apache.xerces.impl.Version
This class defines the version number of the parser.
- version:
$ - Id: Version.java 446761 2006-09-15 21:59:29Z mrglavas $
| Field Summary |
|---|
| public static String | fVersion | Version string. |
| Method from org.apache.xerces.impl.Version Detail: |
public static String getVersion() {
// public methods
/* Print out the version information.
* @return the version of the parser.
*/
return fImmutableVersion;
}
|
public static void main(String[] argv) {
System.out.println(fVersion);
}
Prints out the version number to System.out. This is needed
for the build system. |