use of io.leopard.web.freemarker.template.ajax.ButtonAjaxTemplateDirective in project leopard by tanhaichao.
the class MyJettyView method getVariables.
@Override
public List<TemplateVariable> getVariables() {
List<TemplateVariable> list = new ArrayList<TemplateVariable>();
list.add(new TimeTemplateMethod());
list.add(new BodyTemplateDirective());
list.add(new ServerInfoTemplateDirective());
list.add(new ReplaceParamTemplateMethod());
list.add(new ButtonAjaxTemplateDirective());
return list;
}
Aggregations