KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > polyglot > ext > jl > Version


1 package polyglot.ext.jl;
2
3 /**
4  * Version information for the base compiler.
5  */

6 public class Version extends polyglot.main.Version {
7     public String JavaDoc name()
8         { return "jl"; }
9     public int major()
10     { return 1; }
11     public int minor()
12     { return 3; }
13     public int patch_level()
14     { return 0; }
15 }
16
Popular Tags