Map<String,Class<?>> |
TemplateEngine.getParamInfo(String name) |
Obtain parameter information about a specific template.
|
TemplateEngine |
TemplateEngine.reloadPrecompiled(TemplateEngine precompiler) |
Useful, if this engine is in precompiled mode (probably production) but you still want to be able to apply a hotfix without deployment.
|
TemplateEngine |
TemplateEngine.reloadPrecompiled(Path classDirectory) |
Useful, if this engine is in precompiled mode (probably production) but you still want to be able to apply a hotfix without deployment.
|
void |
TemplateEngine.render(String name,
Object param,
TemplateOutput output) |
Renders the template with the given name.
|
void |
TemplateEngine.render(String name,
Map<String,Object> params,
TemplateOutput output) |
Renders the template with the given name.
|
void |
TemplateEngine.renderLayout(String name,
Map<String,Object> params,
TemplateOutput output) |
Renders a layout with the given name.
|
void |
TemplateEngine.renderTag(String name,
Map<String,Object> params,
TemplateOutput output) |
Renders a tag with the given name.
|