com.github.mustachejava.codes.WriteCode 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.codes;
import java.io.Writer;
/**
* Write template text.
*/
public class WriteCode extends DefaultCode {
public WriteCode(String text) {
super.append(text);
}
@Override
public void identity(Writer writer) {
execute(writer, null);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy