de.neuland.jade4j.template.TemplateLoader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jade4j Show documentation
Show all versions of jade4j Show documentation
Java implementation of the jade templating language
package de.neuland.jade4j.template;
import java.io.IOException;
import java.io.Reader;
public interface TemplateLoader {
public long getLastModified(String name) throws IOException;
public Reader getReader(String name) throws IOException;
}