All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.sviperll.maven.plugin.mustache.MustacheRenderer Maven / Gradle / Ivy

There is a newer version: 0.24-beta2
Show newest version
/*
 * Copyright 2015 Victor Nazarov .
 */
package com.github.sviperll.maven.plugin.mustache;

import com.github.mustachejava.Mustache;
import java.io.Writer;

/**
 *
 * @author Victor Nazarov <[email protected]>
 */
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