Interface TemplateRenderer


public interface TemplateRenderer
Author:
Cause Chung
  • Method Summary

    Modifier and Type
    Method
    Description
     
    void
    render(Writer writer, List<Tuple<Template,?>> data)
    Renders the target output to the writer specified.
  • Method Details

    • render

      void render(Writer writer, List<Tuple<Template,?>> data)
      Renders the target output to the writer specified.
      Parameters:
      writer - java.io.Writer
      data - a list of tuple containing the template and corresponding data for rendering.
    • create

      static TemplateRenderer create()