com.github.mustachejava.Code Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of compiler Show documentation
Show all versions of compiler Show documentation
Implementation of mustache.js for Java
package com.github.mustachejava;
import java.io.Writer;
/**
* Code objects that are executed in order to evaluate the template
*/
public interface Code {
Writer execute(Writer writer, Object scope);
Writer execute(Writer writer, Object[] scopes);
void identity(Writer writer);
void append(String text);
Code[] getCodes();
void setCodes(Code[] codes);
void init();
Object clone();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy