1 16 19 20 package com.sun.org.apache.xalan.internal.xsltc; 21 22 23 38 public class ProcessorVersion { 39 private static int MAJOR = 1; 40 private static int MINOR = 0; 41 private static int DELTA = 0; 42 43 public static void _main(String [] args) { 44 System.out.println("XSLTC version " + MAJOR + "." + MINOR + 45 ((DELTA > 0) ? ("."+DELTA) : (""))); 46 } 47 } 48 | Popular Tags |