* Create a "Compiler" object based on some init param data. This
* is not done yet. Right now we're just hardcoding the actual
* compilers that are created.
*/
public Compiler createCompiler() throws JasperException {
Compiler jspCompiler = new JspCompiler(this);
jspCompiler.setJavaCompiler(new SunJavaCompiler());
return jspCompiler;
}