78910111213
* Greed is good! Cheers! */ public class TemplateFileParser extends ExpressionParser<ResourcePath> { @Override public ResourcePath raw(String templatePath) { return new ResourcePath(templatePath, false); }
11121314151617
public ResourcePath raw(String templatePath) { return new ResourcePath(templatePath, false); } protected ResourcePath builtin(String templatePath) { return new ResourcePath(Configuration.TEMPLATE_PATH + "/" + templatePath, true); }