com.github.mustachejava.TemplateContext 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;
public class TemplateContext {
private final String sm;
private final String em;
private final String file;
private final int line;
public TemplateContext(String sm, String em, String file, int line) {
this.sm = sm;
this.em = em;
this.file = file;
this.line = line;
}
public String startChars() {
return sm;
}
public String endChars() {
return em;
}
public String file() {
return file;
}
public int line() {
return line;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy