java.util.Map<java.lang.String,java.lang.Class<?>> |
TemplateEngine.getParamInfo(java.lang.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(java.nio.file.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(java.lang.String name,
java.lang.Object param,
TemplateOutput output) |
Renders the template with the given name.
|
void |
TemplateEngine.render(java.lang.String name,
java.util.Map<java.lang.String,java.lang.Object> params,
TemplateOutput output) |
Renders the template with the given name.
|