All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.featherfly.hammer.tpl.directive.IncludeDirective Maven / Gradle / Ivy

There is a newer version: 0.7.2
Show newest version
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