org.jamon.util
Interface JavaCompiler

All Known Implementing Classes:
ExternalJavaCompiler, InternalJavaCompiler

public interface JavaCompiler

A JavaCompiler is an object which knows how to compile Java source files.


Method Summary
 java.lang.String compile(java.lang.String[] p_javaFiles)
          Compile the specified java source files.
 

Method Detail

compile

java.lang.String compile(java.lang.String[] p_javaFiles)
Compile the specified java source files.

Parameters:
p_javaFiles - the source files to compile
Returns:
null if the compilation was successful, otherwise a description of the failure


jamon