Interface TemplateEngine

All Known Implementing Classes:
FreeMarkerTemplateEngine, PebbleTemplateEngine

public interface TemplateEngine
The Interface TemplateEngine.

Created: 2016. 1. 9.

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    process(String templateName, Map<String,Object> model, Writer writer)
    Executes template, using the data-model provided, writing the generated output to the supplied Writer.
    void
    process(String templateName, Map<String,Object> model, Writer writer, Locale locale)
    Executes template, using the data-model provided, writing the generated output to the supplied Writer.
    void
    process(String templateName, Map<String,Object> model, String templateSource, Writer writer)
    Executes template, using the data-model provided, writing the generated output to the supplied Writer.