FileDocCategorySizeDatePackage
ProcessorVersion.javaAPI DocJava SE 6 API1820Tue Jun 10 00:22:26 BST 2008com.sun.org.apache.xalan.internal.xsltc

ProcessorVersion

public class ProcessorVersion extends Object
Admin class that assigns a version number to the XSLTC software. The version number is made up from three fields as in: MAJOR.MINOR[.DELTA]. Fields are incremented based on the following: DELTA field: changes for each bug fix, developer fixing the bug should increment this field. MINOR field: API changes or a milestone culminating from several bug fixes. DELTA field goes to zero and MINOR is incremented such as: {1.0,1.0.1,1.0.2,1.0.3,...1.0.18,1.1} MAJOR field: milestone culminating in fundamental API changes or architectural changes. MINOR field goes to zero and MAJOR is incremented such as: {...,1.1.14,1.2,2.0} Stability of a release follows: X.0 > X.X > X.X.X
author
G. Todd Miller

Fields Summary
private static int
MAJOR
private static int
MINOR
private static int
DELTA
Constructors Summary
Methods Summary
public static voidmain(java.lang.String[] args)


         
	System.out.println("XSLTC version " + MAJOR + "." + MINOR +
	    ((DELTA > 0) ? ("."+DELTA) : ("")));