Search in sources :

Example 1 with SAXCompiler

use of com.sun.faces.facelets.compiler.SAXCompiler in project mojarra by eclipse-ee4j.

the class ApplicationAssociate method createCompiler.

protected Compiler createCompiler(Map<String, Object> appMap, WebConfiguration webConfig) {
    Compiler newCompiler = new SAXCompiler();
    loadDecorators(appMap, newCompiler);
    // Skip params?
    newCompiler.setTrimmingComments(webConfig.isOptionEnabled(FaceletsSkipComments));
    addTagLibraries(newCompiler);
    return newCompiler;
}
Also used : SAXCompiler(com.sun.faces.facelets.compiler.SAXCompiler) Compiler(com.sun.faces.facelets.compiler.Compiler) SAXCompiler(com.sun.faces.facelets.compiler.SAXCompiler)

Aggregations

Compiler (com.sun.faces.facelets.compiler.Compiler)1 SAXCompiler (com.sun.faces.facelets.compiler.SAXCompiler)1