A Java-Compiler which can compile Java-Source-Files on the fly and load them via an custom ClassLoader at runtime. If a source-file is changed, it is recompiled and the class gets reloaded automatically. - To add an file to the compiler, use {@link #add(File sourceFile)}. - To create an instance of the compiled class, use {@link #newInstance(String classname)}. A shortcut for add/newInstance is {@link #eval(File)}.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.