
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.IOException;
import java.io.Writer;
import com.github.mustachejava.MustacheException;
/**
* Created by IntelliJ IDEA.
* User: spullara
* Date: 1/9/12
* Time: 3:13 PM
* To change this template use File | Settings | File Templates.
*/
public class WriteCode extends DefaultCode {
public WriteCode(String text) {
super.append(text);
}
@Override
public void identity(Writer writer) {
execute(writer, null);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy