cn.featherfly.hammer.tpl.directive.IncludeDirective Maven / Gradle / Ivy
package cn.featherfly.hammer.tpl.directive;
import cn.featherfly.hammer.tpl.TplConfigFactory;
/**
*
* IncludeDirective
*
*
* @author zhongj
*/
public abstract class IncludeDirective implements TemplateDirective {
protected static final String FILE_PARAM = "file";
protected static final String ID_PARAM = "id";
protected TplConfigFactory tplConfigFactory;
/**
* @param tplConfigFactory tplConfigFactory
*/
public IncludeDirective(TplConfigFactory tplConfigFactory) {
super();
this.tplConfigFactory = tplConfigFactory;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy