
com.github.sviperll.mavem.plugin.mustache.MustacheRenderer Maven / Gradle / Ivy
/*
* Copyright 2015 Victor Nazarov .
*/
package com.github.sviperll.mavem.plugin.mustache;
import com.github.mustachejava.Mustache;
import java.io.Writer;
/**
*
* @author Victor Nazarov
*/
public class MustacheRenderer {
private final Writer writer;
MustacheRenderer(Writer writer) {
this.writer = writer;
}
void render(Mustache mustache, Object context) {
mustache.execute(writer, context);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy