/* * JavaCompiler.java * * Apr 16, 1999 Michiaki Tatsubori */ package openjava.ojc; /** * The interface <code>JavaCompiler</code> represents an interface * to invoke a regular Java compiler. * Classes implementing this interface should accept the same arguments * as Sun's javac. * */ public interface JavaCompiler { public void compile( String[] args ); }
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#1 | 1461 | Julian Hyde |
saffron: First check in. Just documents, and the unmodified OpenJava 20001010 source files. |