uk.co.mruoc.TemplatePopulationParams Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of template-populator Show documentation
Show all versions of template-populator Show documentation
Small library that allows population of template files using a property file
package uk.co.mruoc;
import java.io.OutputStream;
import java.util.Properties;
public interface TemplatePopulationParams {
String getTemplateContent();
Properties getProperties();
OutputStream getOutputStream();
}