1 5 package xdoclet.modules.apache; 6 7 import java.util.Properties ; 8 9 import xdoclet.XDocletException; 10 11 17 public interface SubTemplateEngine 18 { 19 20 26 public void setVariable(String name, Object value); 27 28 34 public Object getVariable(String name); 35 36 39 public void clearVariables(); 40 41 50 public String generate(String template, Properties attributes) throws XDocletException; 51 52 } 53 54 | Popular Tags |