com.github.mustachejava.MustacheVisitor 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;
/**
* Callbacks from the parser as a mustache template is parsed.
*/
public interface MustacheVisitor {
// Mustache
Mustache mustache(TemplateContext templateContext);
// Specified
void iterable(TemplateContext templateContext, String variable, Mustache mustache);
void notIterable(TemplateContext templateContext, String variable, Mustache mustache);
void partial(TemplateContext templateContext, String variable);
void value(TemplateContext templateContext, String variable, boolean encoded);
void write(TemplateContext templateContext, String text);
void pragma(TemplateContext templateContext, String pragma, String args);
// Internal
void eof(TemplateContext templateContext);
// Extension
void extend(TemplateContext templateContext, String variable, Mustache mustache);
void name(TemplateContext templateContext, String variable, Mustache mustache);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy